Commit 780ee709 authored by Tomas Winkler's avatar Tomas Winkler Committed by Greg Kroah-Hartman

mei: buf: drop 'running hook' debug messages.

Drop 'running hook' debug messages, as this info
can be already retrieved via ftrace.
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Link: https://lore.kernel.org/r/20191004182659.2933-1-tomas.winkler@intel.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8b063441
...@@ -46,8 +46,6 @@ static const uuid_le mei_nfc_info_guid = MEI_UUID_NFC_INFO; ...@@ -46,8 +46,6 @@ static const uuid_le mei_nfc_info_guid = MEI_UUID_NFC_INFO;
*/ */
static void number_of_connections(struct mei_cl_device *cldev) static void number_of_connections(struct mei_cl_device *cldev)
{ {
dev_dbg(&cldev->dev, "running hook %s\n", __func__);
if (cldev->me_cl->props.max_number_of_connections > 1) if (cldev->me_cl->props.max_number_of_connections > 1)
cldev->do_match = 0; cldev->do_match = 0;
} }
...@@ -59,8 +57,6 @@ static void number_of_connections(struct mei_cl_device *cldev) ...@@ -59,8 +57,6 @@ static void number_of_connections(struct mei_cl_device *cldev)
*/ */
static void blacklist(struct mei_cl_device *cldev) static void blacklist(struct mei_cl_device *cldev)
{ {
dev_dbg(&cldev->dev, "running hook %s\n", __func__);
cldev->do_match = 0; cldev->do_match = 0;
} }
...@@ -71,8 +67,6 @@ static void blacklist(struct mei_cl_device *cldev) ...@@ -71,8 +67,6 @@ static void blacklist(struct mei_cl_device *cldev)
*/ */
static void whitelist(struct mei_cl_device *cldev) static void whitelist(struct mei_cl_device *cldev)
{ {
dev_dbg(&cldev->dev, "running hook %s\n", __func__);
cldev->do_match = 1; cldev->do_match = 1;
} }
...@@ -248,7 +242,6 @@ static void mei_wd(struct mei_cl_device *cldev) ...@@ -248,7 +242,6 @@ static void mei_wd(struct mei_cl_device *cldev)
{ {
struct pci_dev *pdev = to_pci_dev(cldev->dev.parent); struct pci_dev *pdev = to_pci_dev(cldev->dev.parent);
dev_dbg(&cldev->dev, "running hook %s\n", __func__);
if (pdev->device == MEI_DEV_ID_WPT_LP || if (pdev->device == MEI_DEV_ID_WPT_LP ||
pdev->device == MEI_DEV_ID_SPT || pdev->device == MEI_DEV_ID_SPT ||
pdev->device == MEI_DEV_ID_SPT_H) pdev->device == MEI_DEV_ID_SPT_H)
...@@ -402,8 +395,6 @@ static void mei_nfc(struct mei_cl_device *cldev) ...@@ -402,8 +395,6 @@ static void mei_nfc(struct mei_cl_device *cldev)
bus = cldev->bus; bus = cldev->bus;
dev_dbg(&cldev->dev, "running hook %s\n", __func__);
mutex_lock(&bus->device_lock); mutex_lock(&bus->device_lock);
/* we need to connect to INFO GUID */ /* we need to connect to INFO GUID */
cl = mei_cl_alloc_linked(bus); cl = mei_cl_alloc_linked(bus);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment