Message ID | 1305920731-4077-1-git-send-email-cjb@laptop.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index 2273cca..cbb0330 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -2005,8 +2005,8 @@ static void __set_clock_speed(struct vub300_mmc_host *vub300, u8 buf[8], dev_err(&vub300->udev->dev, "SET_CLOCK_SPEED" " %dkHz failed with retval=%d\n", kHzClock, retval); } else { - dev_info(&vub300->udev->dev, "SET_CLOCK_SPEED" - " %dkHz\n", kHzClock); + dev_dbg(&vub300->udev->dev, "SET_CLOCK_SPEED" + " %dkHz\n", kHzClock); } }
An average vub300 session with CONFIG_MMC_CLKGATE=y set prints repeated lines in the form of: [83083.620491] usb 1-1.4: SET_CLOCK_SPEED 48000kHz [83083.629664] usb 1-1.4: SET_CLOCK_SPEED 0kHz [root@xo ~]# dmesg | grep SET_CLOCK_SPEED | wc -l 203 So, change this from dev_info() to dev_dbg(). We still print a dev_err() if the call actually fails. Signed-off-by: Chris Ball <cjb@laptop.org> Cc: Tony Olech <tony.olech@elandigitalsystems.com> --- drivers/mmc/host/vub300.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)