Title: [5767] trunk/arch/blackfin/kernel/bfin_gpio.c: embedded newlines in printk() does not fly
Revision
5767
Author
vapier
Date
2008-12-01 01:57:20 -0600 (Mon, 01 Dec 2008)

Log Message

embedded newlines in printk() does not fly

Modified Paths


Diff

Modified: trunk/arch/blackfin/kernel/bfin_gpio.c (5766 => 5767)


--- trunk/arch/blackfin/kernel/bfin_gpio.c	2008-12-01 07:42:02 UTC (rev 5766)
+++ trunk/arch/blackfin/kernel/bfin_gpio.c	2008-12-01 07:57:20 UTC (rev 5767)
@@ -1057,7 +1057,8 @@
 		return -EBUSY;
 	}
 	if (unlikely(reserved_gpio_irq_map[gpio_bank(gpio)] & gpio_bit(gpio)))
-		printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved as gpio-irq!\nSee Documentation/blackfin/bfin-gpio-notes.txt.\n", gpio);
+		printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved as gpio-irq!"
+		       " (Documentation/blackfin/bfin-gpio-notes.txt)\n", gpio);
 
 	reserved_gpio_map[gpio_bank(gpio)] |= gpio_bit(gpio);
 	set_label(gpio, label);
@@ -1120,7 +1121,9 @@
 		return -EBUSY;
 	}
 	if (unlikely(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio)))
-		printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved by %s!\nSee Documentation/blackfin/bfin-gpio-notes.txt.\n", gpio, get_label(gpio));
+		printk(KERN_NOTICE "bfin-gpio: GPIO %d is already reserved by %s! "
+		       "(Documentation/blackfin/bfin-gpio-notes.txt)\n",
+		       gpio, get_label(gpio));
 
 	reserved_gpio_irq_map[gpio_bank(gpio)] |= gpio_bit(gpio);
 	set_label(gpio, label);
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to