forked from Minki/linux
6acc81c394
Add support for CMOS Sensor Interface on i.MX1 and i.MXL SoCs. create mode 100644 arch/arm/mach-mx1/ksym_mx1.c create mode 100644 arch/arm/mach-mx1/mx1_camera_fiq.S create mode 100644 arch/arm/plat-mxc/include/mach/mx1_camera.h create mode 100644 drivers/media/video/mx1_camera.c Signed-off-by: Paulius Zaleckas <paulius.zaleckas@teltonika.lt> Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
19 lines
497 B
C
19 lines
497 B
C
/*
|
|
* Exported ksyms of ARCH_MX1
|
|
*
|
|
* Copyright (C) 2008, Darius Augulis <augulis.darius@gmail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <mach/mx1_camera.h>
|
|
|
|
/* IMX camera FIQ handler */
|
|
EXPORT_SYMBOL(mx1_camera_sof_fiq_start);
|
|
EXPORT_SYMBOL(mx1_camera_sof_fiq_end);
|