diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2015-01-14 08:02:59 +0300 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-01-22 05:17:53 +0300 |
commit | 4e7659fc5b54925964142988a2f6888cd35c893e (patch) | |
tree | 9bc82d511b07639f4a3118c5f55ab92bc0be04ca /drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild | |
parent | 630ec6c0d31e0d3b2d8aa641f252e83dfa4a9345 (diff) | |
download | linux-4e7659fc5b54925964142988a2f6888cd35c893e.tar.xz |
drm/nouveau/gpio: namespace + nvidia gpu names (no binary change)
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>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild')
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild index 77bc88672af6..ea42a9ed1821 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/Kbuild @@ -1,6 +1,6 @@ nvkm-y += nvkm/subdev/gpio/base.o nvkm-y += nvkm/subdev/gpio/nv10.o nvkm-y += nvkm/subdev/gpio/nv50.o -nvkm-y += nvkm/subdev/gpio/nv94.o -nvkm-y += nvkm/subdev/gpio/nvd0.o -nvkm-y += nvkm/subdev/gpio/nve0.o +nvkm-y += nvkm/subdev/gpio/g94.o +nvkm-y += nvkm/subdev/gpio/gf110.o +nvkm-y += nvkm/subdev/gpio/gk104.o |