linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] platform/x86: wmi: Fix misuse of vsprintf extension %pULL
@ 2018-03-01 16:08 Joe Perches
  2018-03-01 16:39 ` Andy Shevchenko
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2018-03-01 16:08 UTC (permalink / raw)
  To: Darren Hart, Andy Shevchenko; +Cc: platform-driver-x86, linux-kernel

%pULL doesn't officially exist but %pUL does.

Miscellanea:

o Add missing newlines to a couple logging messages

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/platform/x86/wmi.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c
index f90ba83359f5..8e3d0146ff8c 100644
--- a/drivers/platform/x86/wmi.c
+++ b/drivers/platform/x86/wmi.c
@@ -936,7 +936,7 @@ static int wmi_dev_probe(struct device *dev)
 		wblock->char_dev.mode = 0444;
 		ret = misc_register(&wblock->char_dev);
 		if (ret) {
-			dev_warn(dev, "failed to register char dev: %d", ret);
+			dev_warn(dev, "failed to register char dev: %d\n", ret);
 			ret = -ENOMEM;
 			goto probe_misc_failure;
 		}
@@ -1039,7 +1039,7 @@ static int wmi_create_device(struct device *wmi_bus_dev,
 
 	if (result) {
 		dev_warn(wmi_bus_dev,
-			 "%s data block query control method not found",
+			 "%s data block query control method not found\n",
 			 method);
 		return result;
 	}
@@ -1189,7 +1189,7 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device)
 
 		retval = device_add(&wblock->dev.dev);
 		if (retval) {
-			dev_err(wmi_bus_dev, "failed to register %pULL\n",
+			dev_err(wmi_bus_dev, "failed to register %pUL\n",
 				wblock->gblock.guid);
 			if (debug_event)
 				wmi_method_enable(wblock, 0);
-- 
2.15.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] platform/x86: wmi: Fix misuse of vsprintf extension %pULL
  2018-03-01 16:08 [PATCH] platform/x86: wmi: Fix misuse of vsprintf extension %pULL Joe Perches
@ 2018-03-01 16:39 ` Andy Shevchenko
  2018-03-01 18:05   ` Darren Hart
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Shevchenko @ 2018-03-01 16:39 UTC (permalink / raw)
  To: Joe Perches
  Cc: Darren Hart, Andy Shevchenko, Platform Driver, Linux Kernel Mailing List

On Thu, Mar 1, 2018 at 6:08 PM, Joe Perches <joe@perches.com> wrote:
> %pULL doesn't officially exist but %pUL does.
>
> Miscellanea:
>
> o Add missing newlines to a couple logging messages

Darren, are you agree on the change?

To me it seems fine.

> Signed-off-by: Joe Perches <joe@perches.com>
> ---
>  drivers/platform/x86/wmi.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c
> index f90ba83359f5..8e3d0146ff8c 100644
> --- a/drivers/platform/x86/wmi.c
> +++ b/drivers/platform/x86/wmi.c
> @@ -936,7 +936,7 @@ static int wmi_dev_probe(struct device *dev)
>                 wblock->char_dev.mode = 0444;
>                 ret = misc_register(&wblock->char_dev);
>                 if (ret) {
> -                       dev_warn(dev, "failed to register char dev: %d", ret);
> +                       dev_warn(dev, "failed to register char dev: %d\n", ret);
>                         ret = -ENOMEM;
>                         goto probe_misc_failure;
>                 }
> @@ -1039,7 +1039,7 @@ static int wmi_create_device(struct device *wmi_bus_dev,
>
>         if (result) {
>                 dev_warn(wmi_bus_dev,
> -                        "%s data block query control method not found",
> +                        "%s data block query control method not found\n",
>                          method);
>                 return result;
>         }
> @@ -1189,7 +1189,7 @@ static int parse_wdg(struct device *wmi_bus_dev, struct acpi_device *device)
>
>                 retval = device_add(&wblock->dev.dev);
>                 if (retval) {
> -                       dev_err(wmi_bus_dev, "failed to register %pULL\n",
> +                       dev_err(wmi_bus_dev, "failed to register %pUL\n",
>                                 wblock->gblock.guid);
>                         if (debug_event)
>                                 wmi_method_enable(wblock, 0);
> --
> 2.15.0
>



-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] platform/x86: wmi: Fix misuse of vsprintf extension %pULL
  2018-03-01 16:39 ` Andy Shevchenko
@ 2018-03-01 18:05   ` Darren Hart
  0 siblings, 0 replies; 3+ messages in thread
From: Darren Hart @ 2018-03-01 18:05 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Joe Perches, Andy Shevchenko, Platform Driver, Linux Kernel Mailing List

On Thu, Mar 01, 2018 at 06:39:07PM +0200, Andy Shevchenko wrote:
> On Thu, Mar 1, 2018 at 6:08 PM, Joe Perches <joe@perches.com> wrote:
> > %pULL doesn't officially exist but %pUL does.
> >
> > Miscellanea:
> >
> > o Add missing newlines to a couple logging messages
> 
> Darren, are you agree on the change?
> 
> To me it seems fine.

Yup, clearly a typo based on other usages within the file. Thanks Joe.

Applied.

-- 
Darren Hart
VMware Open Source Technology Center

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-03-01 18:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-01 16:08 [PATCH] platform/x86: wmi: Fix misuse of vsprintf extension %pULL Joe Perches
2018-03-01 16:39 ` Andy Shevchenko
2018-03-01 18:05   ` Darren Hart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).