Skip to content

Commit

Permalink
parisc: use KERN_CONT when printing device inventory
Browse files Browse the repository at this point in the history
Recent changes to printk require KERN_CONT uses to continue logging messages.
So add KERN_CONT to output of device inventory.

Signed-off-by: Helge Deller <deller@gmx.de>
  • Loading branch information
hdeller committed Nov 2, 2016
1 parent a909d3e commit 6f63d0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arch/parisc/kernel/drivers.c
Original file line number Diff line number Diff line change
Expand Up @@ -873,11 +873,11 @@ static void print_parisc_device(struct parisc_device *dev)

if (dev->num_addrs) {
int k;
printk(", additional addresses: ");
pr_cont(", additional addresses: ");
for (k = 0; k < dev->num_addrs; k++)
printk("0x%lx ", dev->addr[k]);
pr_cont("0x%lx ", dev->addr[k]);
}
printk("\n");
pr_cont("\n");
}

/**
Expand Down

0 comments on commit 6f63d0f

Please sign in to comment.