Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iucv: Convert pr_warning to pr_warn

Use the more common pr_warn.
Coalesce formats.
Realign arguments.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Joe Perches and committed by
David S. Miller
47c4cfc3 294a0b7f

+4 -5
+4 -5
net/iucv/iucv.c
··· 493 493 err = "Paging or storage error"; 494 494 break; 495 495 } 496 - pr_warning("Defining an interrupt buffer on CPU %i" 497 - " failed with 0x%02x (%s)\n", cpu, rc, err); 496 + pr_warn("Defining an interrupt buffer on CPU %i failed with 0x%02x (%s)\n", 497 + cpu, rc, err); 498 498 return; 499 499 } 500 500 ··· 1831 1831 BUG_ON(p->iptype < 0x01 || p->iptype > 0x09); 1832 1832 work = kmalloc(sizeof(struct iucv_irq_list), GFP_ATOMIC); 1833 1833 if (!work) { 1834 - pr_warning("iucv_external_interrupt: out of memory\n"); 1834 + pr_warn("iucv_external_interrupt: out of memory\n"); 1835 1835 return; 1836 1836 } 1837 1837 memcpy(&work->data, p, sizeof(work->data)); ··· 1974 1974 printk(KERN_WARNING "iucv_pm_restore %p\n", iucv_path_table); 1975 1975 #endif 1976 1976 if ((iucv_pm_state != IUCV_PM_RESTORING) && iucv_path_table) 1977 - pr_warning("Suspending Linux did not completely close all IUCV " 1978 - "connections\n"); 1977 + pr_warn("Suspending Linux did not completely close all IUCV connections\n"); 1979 1978 iucv_pm_state = IUCV_PM_RESTORING; 1980 1979 if (cpumask_empty(&iucv_irq_cpumask)) { 1981 1980 rc = iucv_query_maxconn();