mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
parisc: use KERN_CONT when printing device inventory
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>
This commit is contained in:
@@ -873,11 +873,11 @@ static void print_parisc_device(struct parisc_device *dev)
|
|||||||
|
|
||||||
if (dev->num_addrs) {
|
if (dev->num_addrs) {
|
||||||
int k;
|
int k;
|
||||||
printk(", additional addresses: ");
|
pr_cont(", additional addresses: ");
|
||||||
for (k = 0; k < dev->num_addrs; k++)
|
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");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user