Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed6f7ac1 authored by Paul Bolle's avatar Paul Bolle Committed by Greg Kroah-Hartman
Browse files

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: default avatarPaul Bolle <pebolle@tiscali.nl>
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 565ce642
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);