mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
hwmon: (sch5636) Print unknown ID in error string via %*pE
Instead of custom approach this allows to print escaped strings via %*pE extension. With this the unknown ID will be printed as a string. Nonetheless, leave hex values to be printed as well. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Message-ID: <20240911201903.2886874-1-andriy.shevchenko@linux.intel.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
38f9fa39af
commit
3017d28d6c
@ -416,8 +416,7 @@ static int sch5636_probe(struct platform_device *pdev)
|
||||
id[i] = '\0';
|
||||
|
||||
if (strcmp(id, "THS")) {
|
||||
pr_err("Unknown Fujitsu id: %02x%02x%02x\n",
|
||||
id[0], id[1], id[2]);
|
||||
pr_err("Unknown Fujitsu id: %3pE (%3ph)\n", id, id);
|
||||
err = -ENODEV;
|
||||
goto error;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user