summaryrefslogtreecommitdiffstats
path: root/include/boot.h
blob: 889773bc2c942f87ff6fef3653552f2c23bcb99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __BOOT_H
#define __BOOT_H

#ifdef CONFIG_OF_FLAT_TREE
int do_bootm_linux(struct image_handle *os, struct image_handle *initrd,
	const char *oftree);
#else
int do_bootm_linux(struct image_handle *os, struct image_handle *initrd);
#endif

#endif /* __BOOT_H */