diff mbox series

[01/21] drm/nouveau: fix a couple of KBuild comments

Message ID 20240613170046.88687-2-bskeggs@nvidia.com (mailing list archive)
State New, archived
Headers show
Series drm/nouveau: insert auxiliary device between nvkm and drm | expand

Commit Message

Ben Skeggs June 13, 2024, 4:59 p.m. UTC
The NVIF/NVKM comments were backwards.

Signed-off-by: Ben Skeggs <bskeggs@nvidia.com>
---
 drivers/gpu/drm/nouveau/Kbuild | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/nouveau/Kbuild b/drivers/gpu/drm/nouveau/Kbuild
index f99b7b227947..61eeef83847a 100644
--- a/drivers/gpu/drm/nouveau/Kbuild
+++ b/drivers/gpu/drm/nouveau/Kbuild
@@ -7,14 +7,12 @@  ccflags-y += -I $(NOUVEAU_PATH)/$(src)/nvkm
 ccflags-y += -I $(NOUVEAU_PATH)/$(src)
 
 # NVKM - HW resource manager
-#- code also used by various userspace tools/tests
-include $(src)/nvif/Kbuild
-nouveau-y := $(nvif-y)
+include $(src)/nvkm/Kbuild
+nouveau-y := $(nvkm-y)
 
 # NVIF - NVKM interface library (NVKM user interface also defined here)
-#- code also used by various userspace tools/tests
-include $(src)/nvkm/Kbuild
-nouveau-y += $(nvkm-y)
+include $(src)/nvif/Kbuild
+nouveau-y += $(nvif-y)
 
 # DRM - general
 ifdef CONFIG_X86