Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
atags.h
Go to the documentation of this file.
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