/*1** asm/bootinfo.h -- Definition of the Linux/m68k boot information structure2**3** Copyright 1992 by Greg Harp4**5** This file is subject to the terms and conditions of the GNU General Public6** License. See the file COPYING in the main directory of this archive7** for more details.8*/910#ifndef _M68K_BOOTINFO_H11#define _M68K_BOOTINFO_H1213#include <uapi/asm/bootinfo.h>141516#ifndef __ASSEMBLER__1718#ifdef CONFIG_BOOTINFO_PROC19extern void save_bootinfo(const struct bi_record *bi);20#else21static inline void save_bootinfo(const struct bi_record *bi) {}22#endif2324#ifdef CONFIG_UBOOT25void process_uboot_commandline(char *commandp, int size);26#else27static inline void process_uboot_commandline(char *commandp, int size) {}28#endif2930#endif /* __ASSEMBLER__ */313233#endif /* _M68K_BOOTINFO_H */343536