treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / nouveau / nvkm / subdev / bus / priv.h
blob76f7ba1c64940820da5cb1dc015788fcfa7a50d6
1 /* SPDX-License-Identifier: MIT */
2 #ifndef __NVKM_BUS_PRIV_H__
3 #define __NVKM_BUS_PRIV_H__
4 #define nvkm_bus(p) container_of((p), struct nvkm_bus, subdev)
5 #include <subdev/bus.h>
7 struct nvkm_bus_func {
8 void (*init)(struct nvkm_bus *);
9 void (*intr)(struct nvkm_bus *);
10 int (*hwsq_exec)(struct nvkm_bus *, u32 *, u32);
11 u32 hwsq_size;
14 int nvkm_bus_new_(const struct nvkm_bus_func *, struct nvkm_device *, int,
15 struct nvkm_bus **);
17 void nv50_bus_init(struct nvkm_bus *);
18 void nv50_bus_intr(struct nvkm_bus *);
19 #endif