aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2013-10-17 13:52:10 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-19 19:53:46 -0700
commited6f7ac1dcae0b95ef2946067beb4ffaba415119 (patch)
treea987857979e27178453d3243deca95f44fa86818 /drivers/misc
parentDrivers: hv: vmbus: Fix a bug in channel rescind code (diff)
downloadlinux-dev-ed6f7ac1dcae0b95ef2946067beb4ffaba415119.tar.xz
linux-dev-ed6f7ac1dcae0b95ef2946067beb4ffaba415119.zip
mei: me: downgrade two errors to debug level
The mei_me driver prints "suspend" at error level at each suspend. It also prints "stop" at error level at driver unload. Downgrade these uninteresting messages to debug level. Cc: Adam Jackson <ajax@redhat.com> Cc: Joe Perches <joe@perches.com> Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/mei/pci-me.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/mei/pci-me.c b/drivers/misc/mei/pci-me.c
index d2ea9ffbc77a..1bf300e08993 100644
--- a/drivers/misc/mei/pci-me.c
+++ b/drivers/misc/mei/pci-me.c
@@ -232,7 +232,7 @@ static void mei_me_remove(struct pci_dev *pdev)
hw = to_me_hw(dev);
- dev_err(&pdev->dev, "stop\n");
+ dev_dbg(&pdev->dev, "stop\n");
mei_stop(dev);
/* disable interrupts */
@@ -262,7 +262,7 @@ static int mei_me_pci_suspend(struct device *device)
if (!dev)
return -ENODEV;
- dev_err(&pdev->dev, "suspend\n");
+ dev_dbg(&pdev->dev, "suspend\n");
mei_stop(dev);