ethosu_drv.h 293 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0-only OR MIT */
  2. /* Copyright 2025 Arm, Ltd. */
  3. #ifndef __ETHOSU_DRV_H__
  4. #define __ETHOSU_DRV_H__
  5. #include <drm/gpu_scheduler.h>
  6. struct ethosu_device;
  7. struct ethosu_file_priv {
  8. struct ethosu_device *edev;
  9. struct drm_sched_entity sched_entity;
  10. };
  11. #endif