1 #ifndef __SAMSUNG_MISC_COMMON_H__ 2 #define __SAMSUNG_MISC_COMMON_H__ 3 4 #ifdef CONFIG_REVISION_TAG 5 u32 get_board_rev(void); 6 #endif 7 8 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG 9 void set_board_info(void); 10 #endif 11 12 #ifdef CONFIG_CMD_BMP 13 void draw_logo(void); 14 #endif 15 16 #ifdef CONFIG_SET_DFU_ALT_INFO 17 char *get_dfu_alt_system(char *interface, char *devstr); 18 char *get_dfu_alt_boot(char *interface, char *devstr); 19 #endif 20 void set_board_type(void); 21 void set_board_revision(void); 22 const char *get_board_type(void); 23 24 #endif /* __SAMSUNG_MISC_COMMON_H__ */ 25