Based off b80915eb99
and compacted into a single commit so that it will fit on the uni git server
13 lines
536 B
C
13 lines
536 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVKM_IBUS_H__
|
|
#define __NVKM_IBUS_H__
|
|
#include <core/subdev.h>
|
|
|
|
int gf100_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
int gf117_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
int gk104_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
int gk20a_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
int gm200_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
int gp10b_ibus_new(struct nvkm_device *, int, struct nvkm_subdev **);
|
|
#endif
|