lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 31 Oct 2022 16:43:59 +0100 From: Marc Kleine-Budde <mkl@...gutronix.de> To: netdev@...r.kernel.org Cc: davem@...emloft.net, kuba@...nel.org, linux-can@...r.kernel.org, kernel@...gutronix.de, Lukas Magel <lukas.magel@...teo.net>, Marc Kleine-Budde <mkl@...gutronix.de> Subject: [PATCH net-next 07/14] can: peak_usb: align user device id format in log with sysfs attribute From: Lukas Magel <lukas.magel@...teo.net> Previously, the user device id was printed to the kernel log in decimal upon connecting a new PEAK device. This behavior is inconsistent with the hexadecimal format of the user device id sysfs attribute. This patch updates the log message to output the id in hexadecimal. Signed-off-by: Lukas Magel <lukas.magel@...teo.net> Link: https://lore.kernel.org/all/20221030105939.87658-8-lukas.magel@posteo.net Signed-off-by: Marc Kleine-Budde <mkl@...gutronix.de> --- drivers/net/can/usb/peak_usb/pcan_usb_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/can/usb/peak_usb/pcan_usb_core.c b/drivers/net/can/usb/peak_usb/pcan_usb_core.c index e558746a0252..731bd6553cfc 100644 --- a/drivers/net/can/usb/peak_usb/pcan_usb_core.c +++ b/drivers/net/can/usb/peak_usb/pcan_usb_core.c @@ -1028,8 +1028,8 @@ static int peak_usb_create_dev(const struct peak_usb_adapter *peak_usb_adapter, /* get device number early */ dev->adapter->dev_get_user_devid(dev, &dev->user_devid); - netdev_info(netdev, "attached to %s channel %u (device %u)\n", - peak_usb_adapter->name, ctrl_idx, dev->user_devid); + netdev_info(netdev, "attached to %s channel %u (device %08Xh)\n", + peak_usb_adapter->name, ctrl_idx, dev->user_devid); return 0; -- 2.35.1
Powered by blists - more mailing lists