printk(): add KERN_CONT where needed in hpet and vt code
authorKay Sievers <kay@vrfy.org>
Tue, 3 Apr 2012 01:18:23 +0000 (03:18 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Apr 2012 17:30:39 +0000 (10:30 -0700)
commit5da527aafed2834852fc4fe21daeaeadf7c61af3
tree0cc1fcc23b165964fe30cc0bd24d568c845f60b3
parent57c3686842114de3b0c00633591e9605c46fb769
printk(): add KERN_CONT where needed in hpet and vt code

A prototype for kmsg records instead of a byte-stream buffer revealed
a couple of missing printk(KERN_CONT ...) uses. Subsequent calls produce
one record per printk() call, while all should have ended up in a single
record.

Instead of:
  ACPI: (supports S0 S5)
  ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
  hpet0: at MMIO 0xfed00000, IRQs 2 , 8 , 0

It prints:
  ACPI: (supports S0
   S5
  )
  ACPI: PCI Interrupt Link [LNKA] (IRQs
   5
   *10
   11
  )
  hpet0: at MMIO 0xfed00000, IRQs
   2
  , 8
  , 0

Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Len Brown <lenb@kernel.org>
Signed-off-by: Kay Sievers <kay@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/char/hpet.c
drivers/tty/vt/vt.c
This page took 0.030993 seconds and 5 git commands to generate.