-
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.
OMAP1: Add support for SoC camera interface
This patch adds a definition of the OMAP1 camera interface platform device, and a function that allows for providing a board specific platform data. The device will be used with the upcoming OMAP1 SoC camera interface driver. Signed-off-by: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl> Signed-off-by: Tony Lindgren <tony@atomide.com>
- Loading branch information
Janusz Krzysztofik
authored and
Tony Lindgren
committed
Oct 1, 2010
1 parent
7ad0e38
commit 1a96edd
Showing
2 changed files
with
54 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#ifndef __ASM_ARCH_CAMERA_H_ | ||
#define __ASM_ARCH_CAMERA_H_ | ||
|
||
void omap1_camera_init(void *); | ||
|
||
static inline void omap1_set_camera_info(struct omap1_cam_platform_data *info) | ||
{ | ||
omap1_camera_init(info); | ||
} | ||
|
||
#endif /* __ASM_ARCH_CAMERA_H_ */ |