]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/kernel/atags.h
Merge tag 'omap-for-v3.11/fixes-for-merge-window' of git://git.kernel.org/pub/scm...
[karo-tx-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