diff options
author | Tomasz Figa <tomasz.figa@gmail.com> | 2013-10-05 19:59:34 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-10-05 20:01:56 -0400 |
commit | 7e66e2689cc3ec18b12ef95e6ed094a367886f50 (patch) | |
tree | 9a2d8866d4bbf38c1d4b648bb60c7cceb07c14d6 /drivers/media/platform | |
parent | 54362e118c190bbdd5c21caa874c1de21a0ca12b (diff) |
s3c-camif: Use CONFIG_ARCH_S3C64XX to check for S3C64XX support
Since CONFIG_PLAT_S3C64XX is going to be removed, this patch modifies
the Kconfig entry of s3c-camif driver to use the proper way of checking
for S3C64xx support - CONFIG_ARCH_S3C64XX.
Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/media/platform')
-rw-r--r-- | drivers/media/platform/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig index c7caf94621b4..eb70dda8cbf3 100644 --- a/drivers/media/platform/Kconfig +++ b/drivers/media/platform/Kconfig | |||
@@ -112,7 +112,7 @@ config VIDEO_OMAP3_DEBUG | |||
112 | config VIDEO_S3C_CAMIF | 112 | config VIDEO_S3C_CAMIF |
113 | tristate "Samsung S3C24XX/S3C64XX SoC Camera Interface driver" | 113 | tristate "Samsung S3C24XX/S3C64XX SoC Camera Interface driver" |
114 | depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API | 114 | depends on VIDEO_V4L2 && I2C && VIDEO_V4L2_SUBDEV_API |
115 | depends on (PLAT_S3C64XX || PLAT_S3C24XX) && PM_RUNTIME | 115 | depends on (ARCH_S3C64XX || PLAT_S3C24XX) && PM_RUNTIME |
116 | select VIDEOBUF2_DMA_CONTIG | 116 | select VIDEOBUF2_DMA_CONTIG |
117 | ---help--- | 117 | ---help--- |
118 | This is a v4l2 driver for s3c24xx and s3c64xx SoC series camera | 118 | This is a v4l2 driver for s3c24xx and s3c64xx SoC series camera |