diff options
author | 2014-01-08 22:31:46 +0200 | |
---|---|---|
committer | 2014-01-08 15:28:27 -0800 | |
commit | 83ce07411dc2316aaaf95a0f193fa2fd76e2e739 (patch) | |
tree | 0dd2d0a55a3edc5bdd0052c3fcfc444db4148670 /drivers/misc/mei/interrupt.c | |
parent | mei: nfc: mei_nfc_free has to be called under lock (diff) | |
download | linux-dev-83ce07411dc2316aaaf95a0f193fa2fd76e2e739.tar.xz linux-dev-83ce07411dc2316aaaf95a0f193fa2fd76e2e739.zip |
mei: fix syntax in comments and debug output
Fix syntax errors in comments and debug strings
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/misc/mei/interrupt.c b/drivers/misc/mei/interrupt.c index 206dbe99bedd..2a7277de7ca1 100644 --- a/drivers/misc/mei/interrupt.c +++ b/drivers/misc/mei/interrupt.c @@ -31,7 +31,7 @@ /** - * mei_irq_compl_handler - dispatch complete handelers + * mei_irq_compl_handler - dispatch complete handlers * for the completed callbacks * * @dev - mei device @@ -338,7 +338,7 @@ int mei_irq_read_handler(struct mei_device *dev, goto reset_slots; } - /* find recepient cl */ + /* find recipient cl */ list_for_each_entry(cl, &dev->file_list, link) { if (mei_cl_hbm_equal(cl, mei_hdr)) { cl_dbg(dev, cl, "got a message\n"); @@ -346,7 +346,7 @@ int mei_irq_read_handler(struct mei_device *dev, } } - /* if no recepient cl was found we assume corrupted header\n */ + /* if no recipient cl was found we assume corrupted header */ if (&cl->link == &dev->file_list) { dev_err(&dev->pdev->dev, "no destination client found 0x%08X\n", dev->rd_msg_hdr); |