aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/mei/interrupt.c
diff options
context:
space:
mode:
authorAlexander Usyskin <alexander.usyskin@intel.com>2013-09-16 16:44:42 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-26 11:42:02 -0400
commit0da90747353c0f5b663c9c25fd56cd21440d222c (patch)
tree65bbe83dc8c0f09ec969715f4b18bc597216c4ea /drivers/misc/mei/interrupt.c
parentc0abffbd982ccf9460187206a074e52cb23e8be3 (diff)
mei: fix function names in debug prints
Fix calling function names in debug prints. Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/interrupt.c')
-rw-r--r--drivers/misc/mei/interrupt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/mei/interrupt.c b/drivers/misc/mei/interrupt.c
index d27804e7d2cd..be42c700b15a 100644
--- a/drivers/misc/mei/interrupt.c
+++ b/drivers/misc/mei/interrupt.c
@@ -343,14 +343,14 @@ int mei_irq_read_handler(struct mei_device *dev,
343 343
344 /* decide where to read the message too */ 344 /* decide where to read the message too */
345 if (!mei_hdr->host_addr) { 345 if (!mei_hdr->host_addr) {
346 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_bus_message.\n"); 346 dev_dbg(&dev->pdev->dev, "call mei_hbm_dispatch.\n");
347 mei_hbm_dispatch(dev, mei_hdr); 347 mei_hbm_dispatch(dev, mei_hdr);
348 dev_dbg(&dev->pdev->dev, "end mei_irq_thread_read_bus_message.\n"); 348 dev_dbg(&dev->pdev->dev, "end mei_hbm_dispatch.\n");
349 } else if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id && 349 } else if (mei_hdr->host_addr == dev->iamthif_cl.host_client_id &&
350 (MEI_FILE_CONNECTED == dev->iamthif_cl.state) && 350 (MEI_FILE_CONNECTED == dev->iamthif_cl.state) &&
351 (dev->iamthif_state == MEI_IAMTHIF_READING)) { 351 (dev->iamthif_state == MEI_IAMTHIF_READING)) {
352 352
353 dev_dbg(&dev->pdev->dev, "call mei_irq_thread_read_iamthif_message.\n"); 353 dev_dbg(&dev->pdev->dev, "call mei_amthif_irq_read_msg.\n");
354 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr)); 354 dev_dbg(&dev->pdev->dev, MEI_HDR_FMT, MEI_HDR_PRM(mei_hdr));
355 355
356 ret = mei_amthif_irq_read_msg(dev, mei_hdr, cmpl_list); 356 ret = mei_amthif_irq_read_msg(dev, mei_hdr, cmpl_list);