• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/plat-samsung/include/plat/
1/*
2 * arch/arm/plat-samsung/include/plat/fimc-core.h
3 *
4 * Copyright 2010 Samsung Electronics Co., Ltd.
5 *	Sylwester Nawrocki <s.nawrocki@samsung.com>
6 *
7 * Samsung camera interface driver core functions
8 *
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.
12 */
13
14#ifndef __ASM_PLAT_FIMC_CORE_H
15#define __ASM_PLAT_FIMC_CORE_H __FILE__
16
17/*
18 * These functions are only for use with the core support code, such as
19 * the CPU-specific initialization code.
20 */
21
22/* Re-define device name to differentiate the subsystem in various SoCs. */
23static inline void s3c_fimc_setname(int id, char *name)
24{
25	switch (id) {
26#ifdef CONFIG_S5P_DEV_FIMC0
27	case 0:
28		s5p_device_fimc0.name = name;
29		break;
30#endif
31#ifdef CONFIG_S5P_DEV_FIMC1
32	case 1:
33		s5p_device_fimc1.name = name;
34		break;
35#endif
36#ifdef CONFIG_S5P_DEV_FIMC2
37	case 2:
38		s5p_device_fimc2.name = name;
39		break;
40#endif
41	}
42}
43
44#endif /* __ASM_PLAT_FIMC_CORE_H */
45