From 100f9638fe7c291641418e33d08ff9a5b77803ac Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Fri, 30 Jan 2015 10:45:33 +0100 Subject: ARM: omap1: make headers more local Some header files are never included outside of a mach-omap1 directory and do not need to be made visible in include/mach, so let's just move them all down one level. Signed-off-by: Arnd Bergmann Acked-by: Tony Lindgren --- arch/arm/mach-omap1/camera.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 arch/arm/mach-omap1/camera.h (limited to 'arch/arm/mach-omap1/camera.h') diff --git a/arch/arm/mach-omap1/camera.h b/arch/arm/mach-omap1/camera.h new file mode 100644 index 000000000000..847d00f0bb0a --- /dev/null +++ b/arch/arm/mach-omap1/camera.h @@ -0,0 +1,13 @@ +#ifndef __ASM_ARCH_CAMERA_H_ +#define __ASM_ARCH_CAMERA_H_ + +#include + +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_ */ -- cgit