diff options
author | Joe Perches <joe@perches.com> | 2016-09-27 09:16:59 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-10-24 14:36:25 +0200 |
commit | a4e6a8524f4327105c557eb05dd420a542d7cefc (patch) | |
tree | 7c5e43637378ae4dc903a395fb3e665402306104 /drivers/usb/isp1760 | |
parent | 88aecde40b84f2f631357c75337f79b8caa97757 (diff) | |
download | linux-stable-a4e6a8524f4327105c557eb05dd420a542d7cefc.tar.gz linux-stable-a4e6a8524f4327105c557eb05dd420a542d7cefc.tar.bz2 linux-stable-a4e6a8524f4327105c557eb05dd420a542d7cefc.zip |
usb: Convert pr_warning to pr_warn
Use the more common logging mechanism.
Miscellanea:
o Realign multiline statements
o Coalesce format
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/isp1760')
-rw-r--r-- | drivers/usb/isp1760/isp1760-if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/isp1760/isp1760-if.c b/drivers/usb/isp1760/isp1760-if.c index 9535b2872183..79205b31e4a9 100644 --- a/drivers/usb/isp1760/isp1760-if.c +++ b/drivers/usb/isp1760/isp1760-if.c @@ -197,7 +197,7 @@ static int isp1760_plat_probe(struct platform_device *pdev) irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); if (!irq_res) { - pr_warning("isp1760: IRQ resource not available\n"); + pr_warn("isp1760: IRQ resource not available\n"); return -ENODEV; } irqflags = irq_res->flags & IRQF_TRIGGER_MASK; |