treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / lima / lima_drv.h
blob69c7344715c9bcd74286a8c7bc0496d1f4d8f11f
1 /* SPDX-License-Identifier: GPL-2.0 OR MIT */
2 /* Copyright 2017-2019 Qiang Yu <yuq825@gmail.com> */
4 #ifndef __LIMA_DRV_H__
5 #define __LIMA_DRV_H__
7 #include <drm/drm_file.h>
9 #include "lima_ctx.h"
11 extern int lima_sched_timeout_ms;
13 struct lima_vm;
14 struct lima_bo;
15 struct lima_sched_task;
17 struct drm_lima_gem_submit_bo;
19 struct lima_drm_priv {
20 struct lima_vm *vm;
21 struct lima_ctx_mgr ctx_mgr;
24 struct lima_submit {
25 struct lima_ctx *ctx;
26 int pipe;
27 u32 flags;
29 struct drm_lima_gem_submit_bo *bos;
30 struct lima_bo **lbos;
31 u32 nr_bos;
33 u32 in_sync[2];
34 u32 out_sync;
36 struct lima_sched_task *task;
39 static inline struct lima_drm_priv *
40 to_lima_drm_priv(struct drm_file *file)
42 return file->driver_priv;
45 #endif