aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/sh_mobile_ceu.h
diff options
context:
space:
mode:
authorKuninori Morimoto <morimoto.kuninori@renesas.com>2009-02-23 12:12:58 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 12:42:52 -0300
commitc354b400c0eac1cc0009958754797538857ce640 (patch)
treee4fddd3b3c0915377ba2966c71b7e86470fc1625 /include/media/sh_mobile_ceu.h
parent1af1b7a2def2f0936fc95edb5dcb3871934b7852 (diff)
downloadkernel_samsung_smdk4412-c354b400c0eac1cc0009958754797538857ce640.zip
kernel_samsung_smdk4412-c354b400c0eac1cc0009958754797538857ce640.tar.gz
kernel_samsung_smdk4412-c354b400c0eac1cc0009958754797538857ce640.tar.bz2
V4L/DVB (10671): sh_mobile_ceu: SOCAM flags are not platform dependent
sh_mobile_ceu_camera.c support for signal polarity flags isn't platform dependent, provide them locally. Only the bus width is implementation specific. Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com> Acked-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/sh_mobile_ceu.h')
-rw-r--r--include/media/sh_mobile_ceu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/media/sh_mobile_ceu.h b/include/media/sh_mobile_ceu.h
index b5dbefe..0f3524c 100644
--- a/include/media/sh_mobile_ceu.h
+++ b/include/media/sh_mobile_ceu.h
@@ -1,10 +1,11 @@
#ifndef __ASM_SH_MOBILE_CEU_H__
#define __ASM_SH_MOBILE_CEU_H__
-#include <media/soc_camera.h>
+#define SH_CEU_FLAG_USE_8BIT_BUS (1 << 0) /* use 8bit bus width */
+#define SH_CEU_FLAG_USE_16BIT_BUS (1 << 1) /* use 16bit bus width */
struct sh_mobile_ceu_info {
- unsigned long flags; /* SOCAM_... */
+ unsigned long flags;
};
#endif /* __ASM_SH_MOBILE_CEU_H__ */