xref: /linux/drivers/accel/ethosu/ethosu_drv.h (revision a34b0e4e21d6be3c3d620aa7f9dfbf0e9550c19e)
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 
6 #include <drm/gpu_scheduler.h>
7 
8 struct ethosu_device;
9 
10 struct ethosu_file_priv {
11 	struct ethosu_device *edev;
12 	struct drm_sched_entity sched_entity;
13 };
14 
15 #endif
16