2019-04-27 08:01:30

by Hao Lee

[permalink] [raw]
Subject: [PATCH] tty: serial: 8250: Fix type field in format string

The variable type and the type field is inconsistent.

Signed-off-by: Hao Lee <[email protected]>
---
drivers/tty/serial/8250/8250_pnp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/serial/8250/8250_pnp.c b/drivers/tty/serial/8250/8250_pnp.c
index 431e69a5a6a0..9dea11baf479 100644
--- a/drivers/tty/serial/8250/8250_pnp.c
+++ b/drivers/tty/serial/8250/8250_pnp.c
@@ -462,8 +462,8 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
return -ENODEV;

dev_dbg(&dev->dev,
- "Setup PNP port: port %lx, mem %pa, irq %d, type %d\n",
- uart.port.iobase, &uart.port.mapbase,
+ "Setup PNP port: port %#lx, mem %#lx, irq %u, type %u\n",
+ uart.port.iobase, uart.port.mapbase,
uart.port.irq, uart.port.iotype);

if (flags & CIR_PORT) {
--
2.14.5


2019-04-27 08:12:12

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] tty: serial: 8250: Fix type field in format string

On Sat, Apr 27, 2019 at 04:00:15PM +0800, Hao Lee wrote:
> The variable type and the type field is inconsistent.

In what way? Please be very specific when you resend this.

thanks,

greg k-h

2019-04-27 08:43:12

by Hao Lee

[permalink] [raw]
Subject: Re: [PATCH] tty: serial: 8250: Fix type field in format string

On Sat, 27 Apr 2019 at 16:09, Greg KH <[email protected]> wrote:
>
> On Sat, Apr 27, 2019 at 04:00:15PM +0800, Hao Lee wrote:
> > The variable type and the type field is inconsistent.
>
> In what way? Please be very specific when you resend this.

The main problem is the dev_dbg statement should print the value of
uart.port.mapbase instead of its address. Besides that, uart.port.irq
and uart.port.iotype are all unsigned types, so using %u is more
appropriate.

Regards,
Hao Lee

2019-04-27 09:02:04

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] tty: serial: 8250: Fix type field in format string

On Sat, Apr 27, 2019 at 04:41:44PM +0800, Hao Lee wrote:
> On Sat, 27 Apr 2019 at 16:09, Greg KH <[email protected]> wrote:
> >
> > On Sat, Apr 27, 2019 at 04:00:15PM +0800, Hao Lee wrote:
> > > The variable type and the type field is inconsistent.
> >
> > In what way? Please be very specific when you resend this.
>
> The main problem is the dev_dbg statement should print the value of
> uart.port.mapbase instead of its address. Besides that, uart.port.irq
> and uart.port.iotype are all unsigned types, so using %u is more
> appropriate.

Wonderful, put all of that in the changelog text and please resend.
What you submitted is not sufficient.

thanks,

greg k-h