diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-02-21 19:42:30 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 20:22:18 -0500 |
commit | 4e45a765646244cdb90069c5fa6bbbc57321f576 (patch) | |
tree | 0d85f2167eef7a1ba3a5faaa5fd7046249daa0e5 /drivers/video/Kconfig | |
parent | f18acdeacbcf038df3c9b03a96193cb01ca45cbb (diff) |
video: s3c-fb: use ARCH_ dependancy
Use ARCH_ dependancy when using s3c-fb. S3C_DEV_FB, S5P_DEV_FIMD0 cannot
be enabled on EXYNOS5. So, ARCH_ should be used as dependancy for s3c-fb.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Tomasz Figa <t.figa@samsung.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 54fab5a38ba5..2df008b0f378 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -2025,7 +2025,8 @@ config FB_TMIO_ACCELL | |||
2025 | 2025 | ||
2026 | config FB_S3C | 2026 | config FB_S3C |
2027 | tristate "Samsung S3C framebuffer support" | 2027 | tristate "Samsung S3C framebuffer support" |
2028 | depends on FB && (S3C_DEV_FB || S5P_DEV_FIMD0) | 2028 | depends on FB && (CPU_S3C2416 || ARCH_S3C64XX || ARCH_S5P64X0 || \ |
2029 | ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS) | ||
2029 | select FB_CFB_FILLRECT | 2030 | select FB_CFB_FILLRECT |
2030 | select FB_CFB_COPYAREA | 2031 | select FB_CFB_COPYAREA |
2031 | select FB_CFB_IMAGEBLIT | 2032 | select FB_CFB_IMAGEBLIT |