UBUNTU: SAUCE: battery: quieten the battery charging messages by default
Shift the battery charging messages et al from KERN_NOTICE to KERN_DEBUG to reduce log noise. BugLink: http://bugs.launchpad.net/bugs/1270248 Signed-off-by: Andy Whitcroft <apw@canonical.com>
This commit is contained in:
committed by
Andy Whitcroft
parent
bffe3c9e72
commit
b0ba863dca
@@ -60,7 +60,7 @@
|
||||
|
||||
/* Debug Message */
|
||||
#define BAT_NOTICE(format, arg...) \
|
||||
printk(KERN_NOTICE "%s " format , __FUNCTION__ , ## arg)
|
||||
printk(KERN_DEBUG "%s " format , __FUNCTION__ , ## arg)
|
||||
|
||||
#define BAT_ERR(format, arg...) \
|
||||
printk(KERN_ERR format , ## arg)
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
#endif
|
||||
|
||||
#define SMB_NOTICE(format, arg...) \
|
||||
printk(KERN_NOTICE "smb345_charger: [%s] " format , __func__ , ## arg)
|
||||
printk(KERN_DEBUG "smb345_charger: [%s] " format , __func__ , ## arg)
|
||||
|
||||
#define SMB_ERR(format, arg...) \
|
||||
printk(KERN_ERR "smb345_charger: [%s] " format , __func__ , ## arg)
|
||||
|
||||
Reference in New Issue
Block a user