9edc9692332d1a368a293f38e0a9543c2102a751
[deliverable/linux.git] / arch / arm / kernel / atags.h
1 #ifdef CONFIG_ATAGS_PROC
2 extern void save_atags(struct tag *tags);
3 #else
4 static inline void save_atags(struct tag *tags) { }
5 #endif
6
7 void convert_to_tag_list(struct tag *tags);
8
9 #ifdef CONFIG_ATAGS
10 struct machine_desc *setup_machine_tags(phys_addr_t __atags_pointer, unsigned int machine_nr);
11 #else
12 static inline struct machine_desc *
13 setup_machine_tags(phys_addr_t __atags_pointer, unsigned int machine_nr)
14 {
15 early_print("no ATAGS support: can't continue\n");
16 while (true);
17 unreachable();
18 }
19 #endif
This page took 0.029721 seconds and 5 git commands to generate.