gpio: sim: Use %pfwP specifier instead of calling fwnode API directly

Bugzilla: https://bugzilla.redhat.com/2183344

commit 4827aae061337251bb91801b316157a78b845ec7
Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Date:   Sun Feb 12 16:13:55 2023 +0200

    gpio: sim: Use %pfwP specifier instead of calling fwnode API directly

    Instead of calling fwnode_get_name() and supply as %s, use %pfwP which
    will do the same inside printf() call.

    Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
    Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

Signed-off-by: Shaoqin Huang <shahuang@redhat.com>
This commit is contained in:
Shaoqin Huang 2023-06-15 08:38:41 -04:00
parent d051aa6a3e
commit f6da29d367
1 changed files with 4 additions and 5 deletions

View File

@ -377,8 +377,8 @@ static int gpio_sim_add_bank(struct fwnode_handle *swnode, struct device *dev)
ret = fwnode_property_read_string(swnode, "gpio-sim,label", &label);
if (ret) {
label = devm_kasprintf(dev, GFP_KERNEL, "%s-%s",
dev_name(dev), fwnode_get_name(swnode));
label = devm_kasprintf(dev, GFP_KERNEL, "%s-%pfwP",
dev_name(dev), swnode);
if (!label)
return -ENOMEM;
}
@ -782,10 +782,9 @@ static int gpio_sim_add_hogs(struct gpio_sim_device *dev)
GFP_KERNEL);
else
hog->chip_label = kasprintf(GFP_KERNEL,
"gpio-sim.%u-%s",
"gpio-sim.%u-%pfwP",
dev->id,
fwnode_get_name(
bank->swnode));
bank->swnode);
if (!hog->chip_label) {
gpio_sim_remove_hogs(dev);
return -ENOMEM;