The patch titled rtc: remove syslog spam on registration has been added to the -mm tree. Its filename is rtc-remove-syslog-spam-on-registration.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: rtc: remove syslog spam on registration From: David Brownell <david-b@xxxxxxxxxxx> This removes some syslog spam as RTC drivers register; debug messages shouldn't come out at "info" level. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Acked-by: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/rtc/rtc-dev.c | 2 +- drivers/rtc/rtc-proc.c | 2 +- drivers/rtc/rtc-sysfs.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/rtc/rtc-dev.c~rtc-remove-syslog-spam-on-registration drivers/rtc/rtc-dev.c --- a/drivers/rtc/rtc-dev.c~rtc-remove-syslog-spam-on-registration +++ a/drivers/rtc/rtc-dev.c @@ -435,7 +435,7 @@ static int rtc_dev_add_device(struct cla goto err_cdev_del; } - dev_info(class_dev->dev, "rtc intf: dev (%d:%d)\n", + dev_dbg(class_dev->dev, "rtc intf: dev (%d:%d)\n", MAJOR(rtc->rtc_dev->devt), MINOR(rtc->rtc_dev->devt)); diff -puN drivers/rtc/rtc-proc.c~rtc-remove-syslog-spam-on-registration drivers/rtc/rtc-proc.c --- a/drivers/rtc/rtc-proc.c~rtc-remove-syslog-spam-on-registration +++ a/drivers/rtc/rtc-proc.c @@ -120,7 +120,7 @@ static int rtc_proc_add_device(struct cl ent->owner = rtc->owner; ent->data = class_dev; - dev_info(class_dev->dev, "rtc intf: proc\n"); + dev_dbg(class_dev->dev, "rtc intf: proc\n"); } else rtc_dev = NULL; diff -puN drivers/rtc/rtc-sysfs.c~rtc-remove-syslog-spam-on-registration drivers/rtc/rtc-sysfs.c --- a/drivers/rtc/rtc-sysfs.c~rtc-remove-syslog-spam-on-registration +++ a/drivers/rtc/rtc-sysfs.c @@ -83,7 +83,7 @@ static int __devinit rtc_sysfs_add_devic { int err; - dev_info(class_dev->dev, "rtc intf: sysfs\n"); + dev_dbg(class_dev->dev, "rtc intf: sysfs\n"); err = sysfs_create_group(&class_dev->kobj, &rtc_attr_group); if (err) _ Patches currently in -mm which might be from david-b@xxxxxxxxxxx are origin.patch fix-more-workqueue-build-breakage-tps65010.patch another-build-fix-header-rearrangements-osk.patch watchdog-omap_wdt-build-fix.patch rtc-remove-syslog-spam-on-registration.patch rtc-framework-rtc_wkalrmenabled-reporting-updates.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html