mei: trivial: fix errors in prints in comments
authorAlexander Usyskin <alexander.usyskin@intel.com>
Mon, 29 Sep 2014 13:31:47 +0000 (16:31 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 29 Sep 2014 15:56:02 +0000 (11:56 -0400)
Fix misspellings and wrong print texts

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>
drivers/misc/mei/client.c
drivers/misc/mei/debugfs.c
drivers/misc/mei/hw-txe.c

index 04a196429e55a5a0c13e84885c2385fc190ddd0d..bf3fd67dc6b65ebe876e7cd8214e12d4f51fc770 100644 (file)
@@ -926,7 +926,7 @@ int mei_cl_write(struct mei_cl *cl, struct mei_cl_cb *cb, bool blocking)
 
        buf = &cb->request_buffer;
 
-       cl_dbg(dev, cl, "mei_cl_write %d\n", buf->size);
+       cl_dbg(dev, cl, "size=%d\n", buf->size);
 
        rets = pm_runtime_get(dev->dev);
        if (rets < 0 && rets != -EINPROGRESS) {
index aca7847da69f996c502df4ea100d54af55f5861d..b92b8bc136ac587eca264ac03913ea575349810e 100644 (file)
@@ -105,7 +105,7 @@ static ssize_t mei_dbgfs_read_active(struct file *fp, char __user *ubuf,
 
        mutex_lock(&dev->device_lock);
 
-       /*  if the driver is not enabled the list won't b consitent */
+       /*  if the driver is not enabled the list won't be consistent */
        if (dev->dev_state != MEI_DEV_ENABLED)
                goto out;
 
index f33fbcbcdf635b1f1f23c46fd5f7fb1ef92f95fb..695d480e44dcc546474afd360904b94042039615 100644 (file)
@@ -841,7 +841,7 @@ static int mei_txe_hw_reset(struct mei_device *dev, bool intr_enable)
        }
 
        /*
-        * Set rediness RDY_CLR bit
+        * Set readiness RDY_CLR bit
         */
        mei_txe_readiness_clear(dev);
 
@@ -867,7 +867,7 @@ static int mei_txe_hw_start(struct mei_device *dev)
 
        ret = mei_txe_readiness_wait(dev);
        if (ret < 0) {
-               dev_err(dev->dev, "wating for readiness failed\n");
+               dev_err(dev->dev, "waiting for readiness failed\n");
                return ret;
        }
 
This page took 0.026485 seconds and 5 git commands to generate.