mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00

The namespace of NVKM is being changed to nvkm_ instead of nouveau_, which will be used for the DRM part of the driver. This is being done in order to make it very clear as to what part of the driver a given symbol belongs to, and as a minor step towards splitting the DRM driver out to be able to stand on its own (for virt). Because there's already a large amount of churn here anyway, this is as good a time as any to also switch to NVIDIA's device and chipset naming to ease collaboration with them. A comparison of objdump disassemblies proves no code changes. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
32 lines
1,021 B
C
32 lines
1,021 B
C
#ifndef __NVKM_IBUS_H__
|
|
#define __NVKM_IBUS_H__
|
|
#include <core/subdev.h>
|
|
|
|
struct nvkm_ibus {
|
|
struct nvkm_subdev base;
|
|
};
|
|
|
|
static inline struct nvkm_ibus *
|
|
nvkm_ibus(void *obj)
|
|
{
|
|
return (void *)nvkm_subdev(obj, NVDEV_SUBDEV_IBUS);
|
|
}
|
|
|
|
#define nvkm_ibus_create(p,e,o,d) \
|
|
nvkm_subdev_create_((p), (e), (o), 0, "PIBUS", "ibus", \
|
|
sizeof(**d), (void **)d)
|
|
#define nvkm_ibus_destroy(p) \
|
|
nvkm_subdev_destroy(&(p)->base)
|
|
#define nvkm_ibus_init(p) \
|
|
nvkm_subdev_init(&(p)->base)
|
|
#define nvkm_ibus_fini(p,s) \
|
|
nvkm_subdev_fini(&(p)->base, (s))
|
|
|
|
#define _nvkm_ibus_dtor _nvkm_subdev_dtor
|
|
#define _nvkm_ibus_init _nvkm_subdev_init
|
|
#define _nvkm_ibus_fini _nvkm_subdev_fini
|
|
|
|
extern struct nvkm_oclass gf100_ibus_oclass;
|
|
extern struct nvkm_oclass gk104_ibus_oclass;
|
|
extern struct nvkm_oclass gk20a_ibus_oclass;
|
|
#endif
|