aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-03-26 14:19:45 +0200
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2020-03-28 22:37:29 +0200
commit74bef188eac103ecfeaf9cd48b86e12f2a2492af (patch)
tree593fb8b67b18c27699da66b96bd9a0bcb10395fe /drivers/platform
parentplatform/x86: surface3_power: Drop unused structure definition (diff)
downloadlinux-dev-74bef188eac103ecfeaf9cd48b86e12f2a2492af.tar.xz
linux-dev-74bef188eac103ecfeaf9cd48b86e12f2a2492af.zip
platform/x86: surface3_power: Use dev_err() instead of pr_err()
We have device and we may use it to print messages. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/surface3_power.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/surface3_power.c b/drivers/platform/x86/surface3_power.c
index 9cdae35c9802..3eb1b48c562e 100644
--- a/drivers/platform/x86/surface3_power.c
+++ b/drivers/platform/x86/surface3_power.c
@@ -432,7 +432,7 @@ mshw0011_space_handler(u32 function, acpi_physical_address command,
ret = mshw0011_bst(cdata, &gsb->bst);
break;
default:
- pr_info("command(0x%02x) is not supported.\n", gsb->cmd.arg1);
+ dev_info(&cdata->bat0->dev, "command(0x%02x) is not supported.\n", gsb->cmd.arg1);
ret = AE_BAD_PARAMETER;
goto err;
}