Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[GitHub/mt8127/android_kernel_alcatel_ttab.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