diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2015-01-14 15:31:24 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-01-19 15:42:03 +1000 |
commit | 35f754b54dc6a10060a7dda9ff1a8271deba49ec (patch) | |
tree | df9c5993d22b79dcb9fcd8382ae7bc438a225461 /lib | |
parent | afb78a2427dd3ef4e2b6a2e2f4f8c50d719671ac (diff) | |
download | nouveau-35f754b54dc6a10060a7dda9ff1a8271deba49ec.tar.gz |
sec: 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 'lib')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index c6626f280..b3b9ddb06 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -23,7 +23,7 @@ fucs := $(drm)/nvkm/engine/ce/fuc/gt215.fuc3.h \ $(drm)/nvkm/subdev/pmu/fuc/gf100.fuc3.h \ $(drm)/nvkm/subdev/pmu/fuc/gf110.fuc4.h \ $(drm)/nvkm/subdev/pmu/fuc/gk208.fuc5.h \ - $(drm)/nvkm/engine/sec/fuc/nv98.fuc0s.h + $(drm)/nvkm/engine/sec/fuc/g98.fuc0s.h drms := $(addprefix $(lib)/, $(nvif-y)) \ $(addprefix $(lib)/, $(nvkm-y)) srcs := $(lib)/drm.o \ |