diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2015-01-14 15:22:32 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2015-01-19 15:42:02 +1000 |
commit | 8b2b3bfe00659c2702e02220c0f471009756a9f7 (patch) | |
tree | c611ea4e05f0a510209c92d3be472b04b78e4711 /lib/Makefile | |
parent | 7edb5de16f42012c3326e2e2f9d8c74fcd576105 (diff) | |
download | nouveau-8b2b3bfe00659c2702e02220c0f471009756a9f7.tar.gz |
ce: 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/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 85230aca9..5c080519f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,8 +5,8 @@ src := $(drm) include $(src)/nvif/Kbuild include $(src)/nvkm/Kbuild -fucs := $(drm)/nvkm/engine/ce/fuc/nva3.fuc3.h \ - $(drm)/nvkm/engine/ce/fuc/nvc0.fuc3.h \ +fucs := $(drm)/nvkm/engine/ce/fuc/gt215.fuc3.h \ + $(drm)/nvkm/engine/ce/fuc/gf100.fuc3.h \ $(drm)/nvkm/engine/gr/fuc/hubnvc0.fuc3.h \ $(drm)/nvkm/engine/gr/fuc/hubnvd7.fuc3.h \ $(drm)/nvkm/engine/gr/fuc/hubnve0.fuc3.h \ |