This source file includes following definitions.
- s3c_onenand_setname
- s3c64xx_onenand1_setname
1
2
3
4
5
6
7
8
9
10 #ifndef __ASM_ARCH_ONENAND_CORE_H
11 #define __ASM_ARCH_ONENAND_CORE_H __FILE__
12
13
14
15
16
17
18 static inline void s3c_onenand_setname(char *name)
19 {
20 #ifdef CONFIG_S3C_DEV_ONENAND
21 s3c_device_onenand.name = name;
22 #endif
23 }
24
25 static inline void s3c64xx_onenand1_setname(char *name)
26 {
27 #ifdef CONFIG_S3C64XX_DEV_ONENAND1
28 s3c64xx_device_onenand1.name = name;
29 #endif
30 }
31
32 #endif