-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Kuninori Morimoto
authored and
Mauro Carvalho Chehab
committed
Mar 30, 2009
1 parent
1af1b7a
commit c354b40
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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__ */ |