• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifdef CONFIG_ATAGS_PROC
2 extern void save_atags(struct tag *tags);
3 #else
save_atags(struct tag * tags)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 *
setup_machine_tags(phys_addr_t __atags_pointer,unsigned int machine_nr)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
20