mac_str
char *dev_name = NULL, *mac_str = NULL, *rem = NULL;
rem = split_if_spec(init + 1, &mac_str, &dev_name, NULL);
setup_etheraddr(dev, mac_str);
unsigned char mac_str[13];
if (usb_string(usb_dev, usb_dev->descriptor.iSerialNumber, mac_str, sizeof(mac_str)) == 12) {
atm_dev->esi[i] = (hex_to_bin(mac_str[i * 2]) << 4) +
hex_to_bin(mac_str[i * 2 + 1]);
unsigned char mac_str[2 * ETH_ALEN + 1];
(sc->usb_dev, sc->usb_dev->descriptor.iSerialNumber, mac_str,
sizeof(mac_str)) != 2 * ETH_ALEN)
esi[i] = hex_to_bin(mac_str[2 * i]) * 16 +
hex_to_bin(mac_str[2 * i + 1]);
mac_str(expected, tests[i].dmac);
mac_str(actual, fib_params->dmac);