Home
last modified time | relevance | path

Searched refs:rev_str (Results 1 – 8 of 8) sorted by relevance

/openbmc/u-boot/board/k+p/kp_imx53/
H A Dkp_id_rev.c91 char rev_str[32], buf[8]; in read_board_id() local
103 sprintf(rev_str, "%02X", rev_id); in read_board_id()
105 printf("BBoard:4x00 Rev:%s\n", rev_str); in read_board_id()
109 printf("BBoard:40x0 Rev:%s\n", rev_str); in read_board_id()
117 env_set("kb53_rev", rev_str); in read_board_id()
/openbmc/linux/drivers/media/common/
H A Dtveeprom.c647 tvee->rev_str[0] = 32 + ((tvee->revision >> 18) & 0x3f); in tveeprom_hauppauge_analog()
648 tvee->rev_str[1] = 32 + ((tvee->revision >> 12) & 0x3f); in tveeprom_hauppauge_analog()
649 tvee->rev_str[2] = 32 + ((tvee->revision >> 6) & 0x3f); in tveeprom_hauppauge_analog()
650 tvee->rev_str[3] = 32 + (tvee->revision & 0x3f); in tveeprom_hauppauge_analog()
651 tvee->rev_str[4] = 0; in tveeprom_hauppauge_analog()
692 tvee->model, tvee->rev_str, tvee->serial_number); in tveeprom_hauppauge_analog()
/openbmc/u-boot/board/bluewater/gurnard/
H A Dgurnard.c283 const char *rev_str; in board_init() local
342 rev_str = env_get("board_rev"); in board_init()
343 if (rev_str && !strncmp(rev_str, "2", 1)) { in board_init()
/openbmc/u-boot/arch/arm/mach-orion5x/
H A Dcpu.c180 char rev_str[5]; /* room enough for 0x00 plus null byte */ in print_cpuinfo() local
220 sprintf(rev_str, "0x%02x", rev); in print_cpuinfo()
221 rev_name = rev_str; in print_cpuinfo()
/openbmc/u-boot/board/freescale/mpc8308rdb/
H A Dmpc8308rdb.c71 static const char * const rev_str[] = { in checkboard() local
84 printf("Board: Freescale MPC8308RDB Rev %s\n", rev_str[i]); in checkboard()
/openbmc/u-boot/board/freescale/mpc8315erdb/
H A Dmpc8315erdb.c48 static const char * const rev_str[] = { in checkboard() local
61 printf("Board: Freescale MPC8315ERDB Rev %s\n", rev_str[i]); in checkboard()
/openbmc/linux/include/media/
H A Dtveeprom.h89 char rev_str[5]; member
/openbmc/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-eeprom.c124 trace_eeprom("rev_str=%s",tvdata.rev_str); in pvr2_eeprom_analyze()