1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef HOSTBOOT_H #define HOSTBOOT_H #include "config.h" #include <types/types.h> #ifdef MTD_SUPPORT void hostboot_load_versions(struct system_info *info); #else static inline void hostboot_load_versions(struct system_info *info) { (void)info; } #endif #endif /* HOSTBOOT_H */