This source file includes following definitions.
- setup_machine_fdt
- arm_dt_init_cpu_maps
1
2
3
4
5
6
7 #ifndef __ASMARM_PROM_H
8 #define __ASMARM_PROM_H
9
10 #ifdef CONFIG_OF
11
12 extern const struct machine_desc *setup_machine_fdt(unsigned int dt_phys);
13 extern void __init arm_dt_init_cpu_maps(void);
14
15 #else
16
17 static inline const struct machine_desc *setup_machine_fdt(unsigned int dt_phys)
18 {
19 return NULL;
20 }
21
22 static inline void arm_dt_init_cpu_maps(void) { }
23
24 #endif
25 #endif