diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2015-01-14 00:04:21 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-01-19 14:23:00 +1000 |
commit | e33d1783097d82392dd804c68416936dcf990293 (patch) | |
tree | cfed30cd6a0018a5e29c3f5997ca5b78a6d19792 /lib/Makefile | |
parent | 65414aa324c878fa42993f482d91ec67bdc78ab2 (diff) | |
download | nouveau-e33d1783097d82392dd804c68416936dcf990293.tar.gz |
pmu: rename from pwr (no binary change)
Switch to NVIDIA's name for the device.
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 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Makefile b/lib/Makefile index d41530355..453f105fb 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -20,10 +20,10 @@ fucs := $(drm)/nvkm/engine/copy/fuc/nva3.fuc3.h \ $(drm)/nvkm/engine/graph/fuc/gpcnvf0.fuc3.h \ $(drm)/nvkm/engine/graph/fuc/gpcnv108.fuc5.h \ $(drm)/nvkm/engine/graph/fuc/gpcgm107.fuc5.h \ - $(drm)/nvkm/subdev/pwr/fuc/nva3.fuc3.h \ - $(drm)/nvkm/subdev/pwr/fuc/nvc0.fuc3.h \ - $(drm)/nvkm/subdev/pwr/fuc/nvd0.fuc4.h \ - $(drm)/nvkm/subdev/pwr/fuc/nv108.fuc5.h + $(drm)/nvkm/subdev/pmu/fuc/nva3.fuc3.h \ + $(drm)/nvkm/subdev/pmu/fuc/nvc0.fuc3.h \ + $(drm)/nvkm/subdev/pmu/fuc/nvd0.fuc4.h \ + $(drm)/nvkm/subdev/pmu/fuc/nv108.fuc5.h drms := $(addprefix $(lib)/, $(nvif-y)) \ $(addprefix $(lib)/, $(nvkm-y)) srcs := $(lib)/drm.o \ |