aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-07-08 17:43:27 -0400
committerDave Airlie <airlied@redhat.com>2010-07-08 17:43:27 -0400
commitf5f05c8a578395a22c190b11eea8e858965abbf7 (patch)
treedfda89c3f92f063ea2708e7f78a857eea80dd9ba /drivers
parent102e73463e1bb921b3a829a1392a29dba16bbabd (diff)
drm: add PCI requirements to low-level drivers.
Now that highlevel DRM no longer requires PCI, we can move the requirement into the lowlevel drivers. Reported-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/Kconfig6
-rw-r--r--drivers/gpu/drm/nouveau/Kconfig2
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig
index 520ab23d8a3f..5b7a1a4692a0 100644
--- a/drivers/gpu/drm/Kconfig
+++ b/drivers/gpu/drm/Kconfig
@@ -130,7 +130,7 @@ endchoice
130 130
131config DRM_MGA 131config DRM_MGA
132 tristate "Matrox g200/g400" 132 tristate "Matrox g200/g400"
133 depends on DRM 133 depends on DRM && PCI
134 select FW_LOADER 134 select FW_LOADER
135 help 135 help
136 Choose this option if you have a Matrox G200, G400 or G450 graphics 136 Choose this option if you have a Matrox G200, G400 or G450 graphics
@@ -148,14 +148,14 @@ config DRM_SIS
148 148
149config DRM_VIA 149config DRM_VIA
150 tristate "Via unichrome video cards" 150 tristate "Via unichrome video cards"
151 depends on DRM 151 depends on DRM && PCI
152 help 152 help
153 Choose this option if you have a Via unichrome or compatible video 153 Choose this option if you have a Via unichrome or compatible video
154 chipset. If M is selected the module will be called via. 154 chipset. If M is selected the module will be called via.
155 155
156config DRM_SAVAGE 156config DRM_SAVAGE
157 tristate "Savage video cards" 157 tristate "Savage video cards"
158 depends on DRM 158 depends on DRM && PCI
159 help 159 help
160 Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister 160 Choose this option if you have a Savage3D/4/SuperSavage/Pro/Twister
161 chipset. If M is selected the module will be called savage. 161 chipset. If M is selected the module will be called savage.
diff --git a/drivers/gpu/drm/nouveau/Kconfig b/drivers/gpu/drm/nouveau/Kconfig
index 1175429da102..b6f5239c2efb 100644
--- a/drivers/gpu/drm/nouveau/Kconfig
+++ b/drivers/gpu/drm/nouveau/Kconfig
@@ -1,6 +1,6 @@
1config DRM_NOUVEAU 1config DRM_NOUVEAU
2 tristate "Nouveau (nVidia) cards" 2 tristate "Nouveau (nVidia) cards"
3 depends on DRM 3 depends on DRM && PCI
4 select FW_LOADER 4 select FW_LOADER
5 select DRM_KMS_HELPER 5 select DRM_KMS_HELPER
6 select DRM_TTM 6 select DRM_TTM