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:
Oliver Grawert
2014-03-28 14:16:37 +00:00
committed by Andy Whitcroft
parent bffe3c9e72
commit b0ba863dca
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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)