Commit e620e548 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

tty: pr_warning->pr_warn and logging neatening

Convert the pr_warning to the more common pr_warn.

Other miscellanea:

o Convert unusual PR_FMT define and uses to pr_fmt
o Remove unnecessary OOM message
o Fix grammar in an error message
o Convert a pr_warning with a KERN_ERR to pr_err
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 483e91a5
...@@ -309,7 +309,7 @@ static int __init ehv_bc_console_init(void) ...@@ -309,7 +309,7 @@ static int __init ehv_bc_console_init(void)
* handle for udbg. * handle for udbg.
*/ */
if (stdout_bc != CONFIG_PPC_EARLY_DEBUG_EHV_BC_HANDLE) if (stdout_bc != CONFIG_PPC_EARLY_DEBUG_EHV_BC_HANDLE)
pr_warning("ehv-bc: udbg handle %u is not the stdout handle\n", pr_warn("ehv-bc: udbg handle %u is not the stdout handle\n",
CONFIG_PPC_EARLY_DEBUG_EHV_BC_HANDLE); CONFIG_PPC_EARLY_DEBUG_EHV_BC_HANDLE);
#endif #endif
......
...@@ -249,7 +249,7 @@ static int lock_card(struct isi_board *card) ...@@ -249,7 +249,7 @@ static int lock_card(struct isi_board *card)
spin_unlock_irqrestore(&card->card_lock, card->flags); spin_unlock_irqrestore(&card->card_lock, card->flags);
msleep(10); msleep(10);
} }
pr_warning("Failed to lock Card (0x%lx)\n", card->base); pr_warn("Failed to lock Card (0x%lx)\n", card->base);
return 0; /* Failed to acquire the card! */ return 0; /* Failed to acquire the card! */
} }
...@@ -378,12 +378,12 @@ static inline int __isicom_paranoia_check(struct isi_port const *port, ...@@ -378,12 +378,12 @@ static inline int __isicom_paranoia_check(struct isi_port const *port,
char *name, const char *routine) char *name, const char *routine)
{ {
if (!port) { if (!port) {
pr_warning("Warning: bad isicom magic for dev %s in %s.\n", pr_warn("Warning: bad isicom magic for dev %s in %s\n",
name, routine); name, routine);
return 1; return 1;
} }
if (port->magic != ISICOM_MAGIC) { if (port->magic != ISICOM_MAGIC) {
pr_warning("Warning: NULL isicom port for dev %s in %s.\n", pr_warn("Warning: NULL isicom port for dev %s in %s\n",
name, routine); name, routine);
return 1; return 1;
} }
...@@ -546,8 +546,8 @@ static irqreturn_t isicom_interrupt(int irq, void *dev_id) ...@@ -546,8 +546,8 @@ static irqreturn_t isicom_interrupt(int irq, void *dev_id)
byte_count = header & 0xff; byte_count = header & 0xff;
if (channel + 1 > card->port_count) { if (channel + 1 > card->port_count) {
pr_warning("%s(0x%lx): %d(channel) > port_count.\n", pr_warn("%s(0x%lx): %d(channel) > port_count\n",
__func__, base, channel+1); __func__, base, channel + 1);
outw(0x0000, base+0x04); /* enable interrupts */ outw(0x0000, base+0x04); /* enable interrupts */
spin_unlock(&card->card_lock); spin_unlock(&card->card_lock);
return IRQ_HANDLED; return IRQ_HANDLED;
......
...@@ -517,14 +517,15 @@ static void sport_set_termios(struct uart_port *port, ...@@ -517,14 +517,15 @@ static void sport_set_termios(struct uart_port *port,
up->csize = 5; up->csize = 5;
break; break;
default: default:
pr_warning("requested word length not supported\n"); pr_warn("requested word length not supported\n");
break;
} }
if (termios->c_cflag & CSTOPB) { if (termios->c_cflag & CSTOPB) {
up->stopb = 1; up->stopb = 1;
} }
if (termios->c_cflag & PARENB) { if (termios->c_cflag & PARENB) {
pr_warning("PAREN bits is not supported yet\n"); pr_warn("PAREN bit is not supported yet\n");
/* up->parib = 1; */ /* up->parib = 1; */
} }
......
...@@ -1371,7 +1371,7 @@ static void hsu_global_init(void) ...@@ -1371,7 +1371,7 @@ static void hsu_global_init(void)
hsu->iolen = 0x1000; hsu->iolen = 0x1000;
if (!(request_mem_region(hsu->paddr, hsu->iolen, "HSU global"))) if (!(request_mem_region(hsu->paddr, hsu->iolen, "HSU global")))
pr_warning("HSU: error in request mem region\n"); pr_warn("HSU: error in request mem region\n");
hsu->reg = ioremap_nocache((unsigned long)hsu->paddr, hsu->iolen); hsu->reg = ioremap_nocache((unsigned long)hsu->paddr, hsu->iolen);
if (!hsu->reg) { if (!hsu->reg) {
......
...@@ -27,6 +27,8 @@ ...@@ -27,6 +27,8 @@
* interrupt for a low speed UART device * interrupt for a low speed UART device
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#ifdef CONFIG_MAGIC_SYSRQ #ifdef CONFIG_MAGIC_SYSRQ
#define SUPPORT_SYSRQ #define SUPPORT_SYSRQ
#endif #endif
...@@ -47,8 +49,6 @@ ...@@ -47,8 +49,6 @@
#include "mrst_max3110.h" #include "mrst_max3110.h"
#define PR_FMT "mrst_max3110: "
#define UART_TX_NEEDED 1 #define UART_TX_NEEDED 1
#define CON_TX_NEEDED 2 #define CON_TX_NEEDED 2
#define BIT_IRQ_PENDING 3 #define BIT_IRQ_PENDING 3
...@@ -127,7 +127,7 @@ static int max3110_out(struct uart_max3110 *max, const u16 out) ...@@ -127,7 +127,7 @@ static int max3110_out(struct uart_max3110 *max, const u16 out)
*obuf = out; *obuf = out;
ret = max3110_write_then_read(max, obuf, ibuf, 2, 1); ret = max3110_write_then_read(max, obuf, ibuf, 2, 1);
if (ret) { if (ret) {
pr_warning(PR_FMT "%s(): get err msg %d when sending 0x%x\n", pr_warn("%s: get err msg %d when sending 0x%x\n",
__func__, ret, out); __func__, ret, out);
goto exit; goto exit;
} }
...@@ -153,10 +153,8 @@ static int max3110_read_multi(struct uart_max3110 *max) ...@@ -153,10 +153,8 @@ static int max3110_read_multi(struct uart_max3110 *max)
blen = M3110_RX_FIFO_DEPTH * sizeof(u16); blen = M3110_RX_FIFO_DEPTH * sizeof(u16);
buf = kzalloc(blen * 2, GFP_KERNEL | GFP_DMA); buf = kzalloc(blen * 2, GFP_KERNEL | GFP_DMA);
if (!buf) { if (!buf)
pr_warning(PR_FMT "%s(): fail to alloc dma buffer\n", __func__);
return 0; return 0;
}
/* tx/rx always have the same length */ /* tx/rx always have the same length */
obuf = buf; obuf = buf;
...@@ -212,13 +210,13 @@ serial_m3110_con_setup(struct console *co, char *options) ...@@ -212,13 +210,13 @@ serial_m3110_con_setup(struct console *co, char *options)
int parity = 'n'; int parity = 'n';
int flow = 'n'; int flow = 'n';
pr_info(PR_FMT "setting up console\n"); pr_info("setting up console\n");
if (co->index == -1) if (co->index == -1)
co->index = 0; co->index = 0;
if (!max) { if (!max) {
pr_err(PR_FMT "pmax is NULL, return"); pr_err("pmax is NULL, return\n");
return -ENODEV; return -ENODEV;
} }
...@@ -296,8 +294,7 @@ static void send_circ_buf(struct uart_max3110 *max, ...@@ -296,8 +294,7 @@ static void send_circ_buf(struct uart_max3110 *max,
ret = max3110_write_then_read(max, obuf, ibuf, blen, 0); ret = max3110_write_then_read(max, obuf, ibuf, blen, 0);
if (ret) if (ret)
pr_warning(PR_FMT "%s(): get err msg %d\n", pr_warn("%s: get err msg %d\n", __func__, ret);
__func__, ret);
receive_chars(max, ibuf, len); receive_chars(max, ibuf, len);
...@@ -411,7 +408,7 @@ static int max3110_main_thread(void *_max) ...@@ -411,7 +408,7 @@ static int max3110_main_thread(void *_max)
int ret = 0; int ret = 0;
struct circ_buf *xmit = &max->con_xmit; struct circ_buf *xmit = &max->con_xmit;
pr_info(PR_FMT "start main thread\n"); pr_info("start main thread\n");
do { do {
wait_event_interruptible(*wq, wait_event_interruptible(*wq,
...@@ -455,7 +452,7 @@ static int max3110_read_thread(void *_max) ...@@ -455,7 +452,7 @@ static int max3110_read_thread(void *_max)
{ {
struct uart_max3110 *max = _max; struct uart_max3110 *max = _max;
pr_info(PR_FMT "start read thread\n"); pr_info("start read thread\n");
do { do {
/* /*
* If can't acquire the mutex, it means the main thread * If can't acquire the mutex, it means the main thread
...@@ -481,7 +478,7 @@ static int serial_m3110_startup(struct uart_port *port) ...@@ -481,7 +478,7 @@ static int serial_m3110_startup(struct uart_port *port)
int ret = 0; int ret = 0;
if (port->line != 0) { if (port->line != 0) {
pr_err(PR_FMT "uart port startup failed\n"); pr_err("uart port startup failed\n");
return -1; return -1;
} }
...@@ -504,7 +501,7 @@ static int serial_m3110_startup(struct uart_port *port) ...@@ -504,7 +501,7 @@ static int serial_m3110_startup(struct uart_port *port)
if (IS_ERR(max->read_thread)) { if (IS_ERR(max->read_thread)) {
ret = PTR_ERR(max->read_thread); ret = PTR_ERR(max->read_thread);
max->read_thread = NULL; max->read_thread = NULL;
pr_err(PR_FMT "Can't create read thread!\n"); pr_err("Can't create read thread!\n");
return ret; return ret;
} }
} }
......
...@@ -924,7 +924,7 @@ static void k_brl(struct vc_data *vc, unsigned char value, char up_flag) ...@@ -924,7 +924,7 @@ static void k_brl(struct vc_data *vc, unsigned char value, char up_flag)
if (kbd->kbdmode != VC_UNICODE) { if (kbd->kbdmode != VC_UNICODE) {
if (!up_flag) if (!up_flag)
pr_warning("keyboard mode must be unicode for braille patterns\n"); pr_warn("keyboard mode must be unicode for braille patterns\n");
return; return;
} }
...@@ -1253,7 +1253,7 @@ static void kbd_keycode(unsigned int keycode, int down, int hw_raw) ...@@ -1253,7 +1253,7 @@ static void kbd_keycode(unsigned int keycode, int down, int hw_raw)
if (raw_mode && !hw_raw) if (raw_mode && !hw_raw)
if (emulate_raw(vc, keycode, !down << 7)) if (emulate_raw(vc, keycode, !down << 7))
if (keycode < BTN_MISC && printk_ratelimit()) if (keycode < BTN_MISC && printk_ratelimit())
pr_warning("can't emulate rawmode for keycode %d\n", pr_warn("can't emulate rawmode for keycode %d\n",
keycode); keycode);
#ifdef CONFIG_SPARC #ifdef CONFIG_SPARC
......
...@@ -3855,8 +3855,8 @@ void do_unblank_screen(int leaving_gfx) ...@@ -3855,8 +3855,8 @@ void do_unblank_screen(int leaving_gfx)
return; return;
if (!vc_cons_allocated(fg_console)) { if (!vc_cons_allocated(fg_console)) {
/* impossible */ /* impossible */
pr_warning("unblank_screen: tty %d not allocated ??\n", pr_warn("unblank_screen: tty %d not allocated ??\n",
fg_console+1); fg_console + 1);
return; return;
} }
vc = vc_cons[fg_console].d; vc = vc_cons[fg_console].d;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment