Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fimc-core.h
Go to the documentation of this file.
1 /*
2  * arch/arm/plat-samsung/include/plat/fimc-core.h
3  *
4  * Copyright 2010 Samsung Electronics Co., Ltd.
5  * Sylwester Nawrocki <[email protected]>
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. */
23 static 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 #ifdef CONFIG_S5P_DEV_FIMC3
42  case 3:
43  s5p_device_fimc3.name = name;
44  break;
45 #endif
46  }
47 }
48 
49 #endif /* __ASM_PLAT_FIMC_CORE_H */