You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
0af0327cd9
GP10B requires a specific initialization sequence due to the absence of devinit. Signed-off-by: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
12 lines
501 B
C
12 lines
501 B
C
#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
|