diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2016-01-07 07:46:34 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-07 01:06:40 -0500 |
commit | 2bcfdc23c6a418b441a1d17f237e9ea347e2fb1f (patch) | |
tree | f1dd775c82afe5f6d3eadabb38ab4c30f3b457ec | |
parent | 3e2fbc7feec4426feba609b94aa89a147e02c67e (diff) |
mei: bus: remove redundant uuid string in debug messages
Remove uuid from the debug messages in bus-fixup.c
as this is already part of the device name.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/mei/bus-fixup.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/misc/mei/bus-fixup.c b/drivers/misc/mei/bus-fixup.c index 020de5919c21..b2d2a6ea576c 100644 --- a/drivers/misc/mei/bus-fixup.c +++ b/drivers/misc/mei/bus-fixup.c | |||
@@ -48,8 +48,7 @@ static const uuid_le mei_nfc_info_guid = MEI_UUID_NFC_INFO; | |||
48 | */ | 48 | */ |
49 | static void number_of_connections(struct mei_cl_device *cldev) | 49 | static void number_of_connections(struct mei_cl_device *cldev) |
50 | { | 50 | { |
51 | dev_dbg(&cldev->dev, "running hook %s on %pUl\n", | 51 | dev_dbg(&cldev->dev, "running hook %s\n", __func__); |
52 | __func__, mei_me_cl_uuid(cldev->me_cl)); | ||
53 | 52 | ||
54 | if (cldev->me_cl->props.max_number_of_connections > 1) | 53 | if (cldev->me_cl->props.max_number_of_connections > 1) |
55 | cldev->do_match = 0; | 54 | cldev->do_match = 0; |
@@ -62,8 +61,8 @@ static void number_of_connections(struct mei_cl_device *cldev) | |||
62 | */ | 61 | */ |
63 | static void blacklist(struct mei_cl_device *cldev) | 62 | static void blacklist(struct mei_cl_device *cldev) |
64 | { | 63 | { |
65 | dev_dbg(&cldev->dev, "running hook %s on %pUl\n", | 64 | dev_dbg(&cldev->dev, "running hook %s\n", __func__); |
66 | __func__, mei_me_cl_uuid(cldev->me_cl)); | 65 | |
67 | cldev->do_match = 0; | 66 | cldev->do_match = 0; |
68 | } | 67 | } |
69 | 68 | ||
@@ -208,8 +207,7 @@ static void mei_nfc(struct mei_cl_device *cldev) | |||
208 | 207 | ||
209 | bus = cldev->bus; | 208 | bus = cldev->bus; |
210 | 209 | ||
211 | dev_dbg(bus->dev, "running hook %s: %pUl match=%d\n", | 210 | dev_dbg(&cldev->dev, "running hook %s\n", __func__); |
212 | __func__, mei_me_cl_uuid(cldev->me_cl), cldev->do_match); | ||
213 | 211 | ||
214 | mutex_lock(&bus->device_lock); | 212 | mutex_lock(&bus->device_lock); |
215 | /* we need to connect to INFO GUID */ | 213 | /* we need to connect to INFO GUID */ |