Skip to content

Commit

Permalink
drivers: tty: serial: uartlite: use dev_dbg() instead of pr_debug()
Browse files Browse the repository at this point in the history
Using dev_dbg() instead of pr_debg() for more consistent output.
(prints device name, etc).

Signed-off-by: Enrico Weigelt <info@metux.net>
  • Loading branch information
metux committed Jan 10, 2020
1 parent 2aceba5 commit 3ccc75a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/tty/serial/uartlite.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ static int ulite_request_port(struct uart_port *port)
struct uartlite_data *pdata = port->private_data;
int ret;

pr_debug("ulite console: port=%p; port->mapbase=%llx\n",
dev_dbg(port->dev,
"ulite console: port=%p; port->mapbase=%llx\n",
port, (unsigned long long) port->mapbase);

if (!request_mem_region(port->mapbase, ULITE_REGION, "uartlite")) {
Expand Down Expand Up @@ -516,7 +517,8 @@ static int ulite_console_setup(struct console *co, char *options)

/* Has the device been initialized yet? */
if (!port->mapbase) {
pr_debug("console on ttyUL%i not present\n", co->index);
dev_dbg(port->dev, "console on ttyUL%i not present\n",
co->index);
return -ENODEV;
}

Expand Down

0 comments on commit 3ccc75a

Please sign in to comment.