Commit 1e26728d authored by Nathan Howard's avatar Nathan Howard Committed by Greg Kroah-Hartman

staging: bcm2835-audio: bcm2835.h: fix printk coding style issue

Fix checkpatch.pl warning of the form "WARNING: Prefer
subsystem eg: netdev]_info([subsystem]dev, ...
then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ..."
Signed-off-by: default avatarNathan Howard <adanhawthorn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b41fb0ac
......@@ -37,10 +37,10 @@
#ifdef AUDIO_VERBOSE_DEBUG_ENABLE
#define audio_debug(fmt, arg...) \
printk(KERN_INFO"%s:%d " fmt, __func__, __LINE__, ##arg)
pr_info("%s:%d " fmt, __func__, __LINE__, ##arg)
#define audio_info(fmt, arg...) \
printk(KERN_INFO"%s:%d " fmt, __func__, __LINE__, ##arg)
pr_info("%s:%d " fmt, __func__, __LINE__, ##arg)
#else
......@@ -59,13 +59,13 @@
#endif /* AUDIO_DEBUG_ENABLE */
#define audio_error(fmt, arg...) \
printk(KERN_ERR"%s:%d " fmt, __func__, __LINE__, ##arg)
pr_err("%s:%d " fmt, __func__, __LINE__, ##arg)
#define audio_warning(fmt, arg...) \
printk(KERN_WARNING"%s:%d " fmt, __func__, __LINE__, ##arg)
pr_warn("%s:%d " fmt, __func__, __LINE__, ##arg)
#define audio_alert(fmt, arg...) \
printk(KERN_ALERT"%s:%d " fmt, __func__, __LINE__, ##arg)
pr_alert("%s:%d " fmt, __func__, __LINE__, ##arg)
#define MAX_SUBSTREAMS (8)
#define AVAIL_SUBSTREAMS_MASK (0xff)
......
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