c354b400c0
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>
11 lines
294 B
C
11 lines
294 B
C
#ifndef __ASM_SH_MOBILE_CEU_H__
|
|
#define __ASM_SH_MOBILE_CEU_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;
|
|
};
|
|
|
|
#endif /* __ASM_SH_MOBILE_CEU_H__ */
|