hex2bcd           370 drivers/macintosh/smu.c 	cmd_buf->data[1] = hex2bcd(time->tm_sec);
hex2bcd           371 drivers/macintosh/smu.c 	cmd_buf->data[2] = hex2bcd(time->tm_min);
hex2bcd           372 drivers/macintosh/smu.c 	cmd_buf->data[3] = hex2bcd(time->tm_hour);
hex2bcd           374 drivers/macintosh/smu.c 	cmd_buf->data[5] = hex2bcd(time->tm_mday);
hex2bcd           375 drivers/macintosh/smu.c 	cmd_buf->data[6] = hex2bcd(time->tm_mon) + 1;
hex2bcd           376 drivers/macintosh/smu.c 	cmd_buf->data[7] = hex2bcd(time->tm_year - 100);
hex2bcd           417 drivers/macintosh/smu.c 			      hex2bcd(time->tm_sec),
hex2bcd           418 drivers/macintosh/smu.c 			      hex2bcd(time->tm_min),
hex2bcd           419 drivers/macintosh/smu.c 			      hex2bcd(time->tm_hour),
hex2bcd           421 drivers/macintosh/smu.c 			      hex2bcd(time->tm_mday),
hex2bcd           422 drivers/macintosh/smu.c 			      hex2bcd(time->tm_mon) + 1,
hex2bcd           423 drivers/macintosh/smu.c 			      hex2bcd(time->tm_year - 100));