public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Serial driver (serial_core.c) status messages should be set to KERN_INFO
@ 2005-09-01 21:26 Alon Bar-Lev
  2005-09-01 20:38 ` Jiri Slaby
  2005-09-02 15:21 ` Russell King
  0 siblings, 2 replies; 7+ messages in thread
From: Alon Bar-Lev @ 2005-09-01 21:26 UTC (permalink / raw)
  To: Linux Kernel Mailing List

Hello,


When upgrading to 2.6.13 I've noticed that serial driver reports it 
status with unknown severity, causing the boot-splash to be overridden.


Please consider this modification.


Best Regards,

Alon Bar-Lev.


At drivers/serial/serial_core.c


 static inline void

 uart_report_port(struct uart_driver *drv, struct uart_port *port)
 {
-        printk("%s%d", drv->dev_name, port->line);
+      printk(KERN_INFO + "%s%d", drv->dev_name, port->line);

         printk(" at ");
         switch (port->iotype) {
         case UPIO_PORT:
                 printk("I/O 0x%x", port->iobase);
                 break;
         case UPIO_HUB6:
                 printk("I/O 0x%x offset 0x%x", port->iobase, port->hub6);
                 break;
         case UPIO_MEM:
         case UPIO_MEM32:
                 printk("MMIO 0x%lx", port->mapbase);
                 break;
         }
         printk(" (irq = %d) is a %s\n", port->irq, uart_type(port));
 }


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

end of thread, other threads:[~2005-09-02 15:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-01 21:26 Serial driver (serial_core.c) status messages should be set to KERN_INFO Alon Bar-Lev
2005-09-01 20:38 ` Jiri Slaby
2005-09-01 20:46   ` Ben Dooks
2005-09-01 21:04     ` Jiri Slaby
2005-09-01 21:38       ` Russell King
2005-09-01 21:49   ` Alon Bar-Lev
2005-09-02 15:21 ` Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox