1/* SPDX-License-Identifier: GPL-2.0 */
2void convert_to_tag_list(struct tag *tags);
3
4#ifdef CONFIG_ATAGS
5const struct machine_desc *setup_machine_tags(void *__atags_vaddr,
6 unsigned int machine_nr);
7#else
8static inline const struct machine_desc * __init __noreturn
9setup_machine_tags(void *__atags_vaddr, unsigned int machine_nr)
10{
11 early_print("no ATAGS support: can't continue\n");
12 while (true);
13 unreachable();
14}
15#endif
16

source code of linux/arch/arm/kernel/atags.h