]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - arch/arm/kernel/atags.h
Merge remote-tracking branches 'asoc/fix/imx-spdif', 'asoc/fix/mtk', 'asoc/fix/mxs...
[mirror_ubuntu-focal-kernel.git] / arch / arm / kernel / atags.h
1 void convert_to_tag_list(struct tag *tags);
2
3 #ifdef CONFIG_ATAGS
4 const struct machine_desc *setup_machine_tags(phys_addr_t __atags_pointer,
5 unsigned int machine_nr);
6 #else
7 static inline const struct machine_desc *
8 setup_machine_tags(phys_addr_t __atags_pointer, unsigned int machine_nr)
9 {
10 early_print("no ATAGS support: can't continue\n");
11 while (true);
12 unreachable();
13 }
14 #endif