Commit 47c4cfc3 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

iucv: Convert pr_warning to pr_warn

Use the more common pr_warn.
Coalesce formats.
Realign arguments.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 294a0b7f
...@@ -493,8 +493,8 @@ static void iucv_declare_cpu(void *data) ...@@ -493,8 +493,8 @@ static void iucv_declare_cpu(void *data)
err = "Paging or storage error"; err = "Paging or storage error";
break; break;
} }
pr_warning("Defining an interrupt buffer on CPU %i" pr_warn("Defining an interrupt buffer on CPU %i failed with 0x%02x (%s)\n",
" failed with 0x%02x (%s)\n", cpu, rc, err); cpu, rc, err);
return; return;
} }
...@@ -1831,7 +1831,7 @@ static void iucv_external_interrupt(struct ext_code ext_code, ...@@ -1831,7 +1831,7 @@ static void iucv_external_interrupt(struct ext_code ext_code,
BUG_ON(p->iptype < 0x01 || p->iptype > 0x09); BUG_ON(p->iptype < 0x01 || p->iptype > 0x09);
work = kmalloc(sizeof(struct iucv_irq_list), GFP_ATOMIC); work = kmalloc(sizeof(struct iucv_irq_list), GFP_ATOMIC);
if (!work) { if (!work) {
pr_warning("iucv_external_interrupt: out of memory\n"); pr_warn("iucv_external_interrupt: out of memory\n");
return; return;
} }
memcpy(&work->data, p, sizeof(work->data)); memcpy(&work->data, p, sizeof(work->data));
...@@ -1974,8 +1974,7 @@ static int iucv_pm_restore(struct device *dev) ...@@ -1974,8 +1974,7 @@ static int iucv_pm_restore(struct device *dev)
printk(KERN_WARNING "iucv_pm_restore %p\n", iucv_path_table); printk(KERN_WARNING "iucv_pm_restore %p\n", iucv_path_table);
#endif #endif
if ((iucv_pm_state != IUCV_PM_RESTORING) && iucv_path_table) if ((iucv_pm_state != IUCV_PM_RESTORING) && iucv_path_table)
pr_warning("Suspending Linux did not completely close all IUCV " pr_warn("Suspending Linux did not completely close all IUCV connections\n");
"connections\n");
iucv_pm_state = IUCV_PM_RESTORING; iucv_pm_state = IUCV_PM_RESTORING;
if (cpumask_empty(&iucv_irq_cpumask)) { if (cpumask_empty(&iucv_irq_cpumask)) {
rc = iucv_query_maxconn(); rc = iucv_query_maxconn();
......
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