2 * arch/arm/plat-samsung/include/plat/fimc-core.h
4 * Copyright 2010 Samsung Electronics Co., Ltd.
5 * Sylwester Nawrocki <s.nawrocki@samsung.com>
7 * Samsung camera interface driver core functions
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #ifndef __ASM_PLAT_FIMC_CORE_H
15 #define __ASM_PLAT_FIMC_CORE_H __FILE__
18 * These functions are only for use with the core support code, such as
19 * the CPU-specific initialization code.
22 /* Re-define device name to differentiate the subsystem in various SoCs. */
23 static inline void s3c_fimc_setname(int id
, char *name
)
26 #ifdef CONFIG_S5P_DEV_FIMC0
28 s5p_device_fimc0
.name
= name
;
31 #ifdef CONFIG_S5P_DEV_FIMC1
33 s5p_device_fimc1
.name
= name
;
36 #ifdef CONFIG_S5P_DEV_FIMC2
38 s5p_device_fimc2
.name
= name
;
41 #ifdef CONFIG_S5P_DEV_FIMC3
43 s5p_device_fimc3
.name
= name
;
49 #endif /* __ASM_PLAT_FIMC_CORE_H */