Commit 0e44dec1 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mauro Carvalho Chehab

[media] dvb: mantis: use '%pM' format to print MAC address

Signed-off-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Cc: Manu Abraham <abraham.manu@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d6396090
...@@ -91,10 +91,7 @@ static int get_mac_address(struct mantis_pci *mantis) ...@@ -91,10 +91,7 @@ static int get_mac_address(struct mantis_pci *mantis)
return err; return err;
} }
dprintk(verbose, MANTIS_ERROR, 0, dprintk(verbose, MANTIS_ERROR, 0,
" MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]\n", " MAC Address=[%pM]\n", mantis->mac_address);
mantis->mac_address[0], mantis->mac_address[1],
mantis->mac_address[2], mantis->mac_address[3],
mantis->mac_address[4], mantis->mac_address[5]);
return 0; return 0;
} }
......
...@@ -68,14 +68,7 @@ int mantis_get_mac(struct mantis_pci *mantis) ...@@ -68,14 +68,7 @@ int mantis_get_mac(struct mantis_pci *mantis)
return err; return err;
} }
dprintk(MANTIS_ERROR, 0, dprintk(MANTIS_ERROR, 0, " MAC Address=[%pM]\n", mac_addr);
" MAC Address=[%02x:%02x:%02x:%02x:%02x:%02x]\n",
mac_addr[0],
mac_addr[1],
mac_addr[2],
mac_addr[3],
mac_addr[4],
mac_addr[5]);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment