diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-07-07 05:30:02 +0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-07-07 05:30:02 +0400 |
commit | 727dc3fde82969609e1e69f1f12de83c2fe41238 (patch) | |
tree | 7354b8c2aced2124af0cd21ea33fb03175ba7329 /drivers/video/Kconfig | |
parent | 7119888df1fd115573616ae43747b2e823b0663e (diff) | |
download | linux-727dc3fde82969609e1e69f1f12de83c2fe41238.tar.xz |
video: sh_mobile_lcdcfb: depends on HAVE_CLK.
This deifdefs the driver and adds an explicit HAVE_CLK dependency. Given
that all SH platforms provide it, there is no reason to keep this as an
ifdef. Other architectures that implement support for this driver will
already have to provide clock framework support for timers and so on
already, so adding this as an additional dependency is not terribly
probematic.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 8afcf08eba98..ca330b1b3653 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -1866,7 +1866,7 @@ config FB_W100 config FB_SH_MOBILE_LCDC tristate "SuperH Mobile LCDC framebuffer support" - depends on FB && SUPERH + depends on FB && SUPERH && HAVE_CLK select FB_SYS_FILLRECT select FB_SYS_COPYAREA select FB_SYS_IMAGEBLIT |