diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2010-12-25 16:17:32 +0000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-12-27 10:40:47 +1000 |
commit | c42988012ad9c1807b7c7a5ff855cd630094989b (patch) | |
tree | 4e832c41ab43079763803f12d38d332e80ef5b93 /drivers/gpu/drm/nouveau/Kconfig | |
parent | 183720b8af5301e2eab7f3163f03133c5a6ad6da (diff) | |
download | blackbird-op-linux-c42988012ad9c1807b7c7a5ff855cd630094989b.tar.gz blackbird-op-linux-c42988012ad9c1807b7c7a5ff855cd630094989b.zip |
drm/nouveau: Only select ACPI_VIDEO if its dependencies are met
CONFIG_ACPI_VIDEO depends on more than just CONFIG_ACPI, so add those
dependencies to the Kconfig select condition. The case where some
dependencies fail to be satisfied should be handled correctly, because
in that case the ACPI_VIDEO symbols we use are converted into
static-inline stubs.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/Kconfig')
-rw-r--r-- | drivers/gpu/drm/nouveau/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/Kconfig b/drivers/gpu/drm/nouveau/Kconfig index 72730e9ca06c..21d6c29c2d21 100644 --- a/drivers/gpu/drm/nouveau/Kconfig +++ b/drivers/gpu/drm/nouveau/Kconfig @@ -10,7 +10,7 @@ config DRM_NOUVEAU select FB select FRAMEBUFFER_CONSOLE if !EMBEDDED select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT - select ACPI_VIDEO if ACPI + select ACPI_VIDEO if ACPI && X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL && INPUT help Choose this option for open-source nVidia support. |