diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-09-30 10:12:22 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-10-28 14:51:08 -0400 |
commit | e94363440a7e5b65e3695da8fac63f139d0d903b (patch) | |
tree | a878333d58c63db651344e45106287bd24694e97 | |
parent | 867f1edbcca970f6ec6d797764dbd165f4e528ab (diff) |
[media] platform: Kconfig: Select SRAM for VIDEO_CODA
Running the coda driver without CONFIG_SRAM selected leads to the following
probe error:
coda 63ff4000.vpu: iram pool not available
coda: probe of 63ff4000.vpu failed with error -12
In order to avoid it, select CONFIG_SRAM inside VIDEO_CODA.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/media/platform/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig index 2405ef7c6604..3d9beef60325 100644 --- a/drivers/media/platform/Kconfig +++ b/drivers/media/platform/Kconfig | |||
@@ -143,6 +143,7 @@ if V4L_MEM2MEM_DRIVERS | |||
143 | config VIDEO_CODA | 143 | config VIDEO_CODA |
144 | tristate "Chips&Media Coda multi-standard codec IP" | 144 | tristate "Chips&Media Coda multi-standard codec IP" |
145 | depends on VIDEO_DEV && VIDEO_V4L2 && ARCH_MXC | 145 | depends on VIDEO_DEV && VIDEO_V4L2 && ARCH_MXC |
146 | select SRAM | ||
146 | select VIDEOBUF2_DMA_CONTIG | 147 | select VIDEOBUF2_DMA_CONTIG |
147 | select V4L2_MEM2MEM_DEV | 148 | select V4L2_MEM2MEM_DEV |
148 | ---help--- | 149 | ---help--- |