]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drivers:staging:mei Fix some typos in staging/mei
authorJustin P. Mattock <justinmattock@gmail.com>
Mon, 12 Mar 2012 14:18:09 +0000 (07:18 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Mar 2012 22:45:10 +0000 (15:45 -0700)
The below patch fixes some typos in drivers/staging/mei/* that I have found while
doing a little bit of reading.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mei/interface.c
drivers/staging/mei/interface.h
drivers/staging/mei/interrupt.c
drivers/staging/mei/iorw.c
drivers/staging/mei/main.c
drivers/staging/mei/mei-amt-version.c
drivers/staging/mei/mei.h
drivers/staging/mei/mei.txt
drivers/staging/mei/mei_dev.h

index a873be750874ae7e201f21aa6b8fb6e52128c40a..8a80e80cd7df4ea6a772f3543b251aec54d4c6ec 100644 (file)
@@ -275,7 +275,7 @@ int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl)
  * @returns
  *     0 on success
  *     -ENOENT when me client is not found
- *     -EINVAL wehn ctrl credits are <= 0
+ *     -EINVAL when ctrl credits are <= 0
  */
 int mei_flow_ctrl_reduce(struct mei_device *dev, struct mei_cl *cl)
 {
index e5bfb18865fcdd6bebd5cf7feed0396b571bde80..fb90c6f8a759c452d2a86e3b18521b6e718c84b5 100644 (file)
@@ -60,7 +60,7 @@ void mei_wd_set_start_timeout(struct mei_device *dev, u16 timeout);
  */
 void mei_watchdog_register(struct mei_device *dev);
 /*
- * mei_watchdog_unregister  - Uegistering watchdog interface
+ * mei_watchdog_unregister  - Unregistering watchdog interface
  * @dev - mei device
  */
 void mei_watchdog_unregister(struct mei_device *dev);
index e70bc3714c13d67d4f8cfb4c0905d5014cdc9833..a34e2f3a0706af6a71b2c90ee68cd01b8ada111f 100644 (file)
@@ -719,7 +719,7 @@ static void mei_irq_thread_read_bus_message(struct mei_device *dev,
                                dev->me_client_index++;
                                dev->me_client_presentation_num++;
 
-                               /** Send Client Propeties request **/
+                               /** Send Client Properties request **/
                                res = mei_host_client_properties(dev);
                                if (res < 0) {
                                        dev_dbg(&dev->pdev->dev, "mei_host_client_properties() failed");
@@ -1507,7 +1507,7 @@ irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id)
        dev->host_hw_state = mei_hcsr_read(dev);
 
        /* Ack the interrupt here
-        * In case of MSI we don't go throuhg the quick handler */
+        * In case of MSI we don't go through the quick handler */
        if (pci_dev_msi_enabled(dev->pdev))
                mei_reg_write(dev, H_CSR, dev->host_hw_state);
 
@@ -1543,7 +1543,7 @@ irqreturn_t mei_interrupt_thread_handler(int irq, void *dev_id)
                        return IRQ_HANDLED;
                }
        }
-       /* check slots avalable for reading */
+       /* check slots available for reading */
        slots = mei_count_full_read_slots(dev);
        dev_dbg(&dev->pdev->dev, "slots =%08x  extra_write_index =%08x.\n",
                slots, dev->extra_write_index);
index a3fbac9546f18fd026f1deda2d3a09b40b6f4520..a6b969471835a1174b924c1daa1e501855bd7527 100644 (file)
@@ -109,8 +109,8 @@ int mei_ioctl_connect_client(struct file *file,
        dev_dbg(&dev->pdev->dev, "FW Client - Max Msg Len = %d\n",
                        dev->me_clients[i].props.max_msg_length);
 
-       /* if we're connecting to amthi client so we will use the exist
-        * connection
+       /* if we're connecting to amthi client then we will use the
+        * existing connection
         */
        if (uuid_le_cmp(data->in_client_uuid, mei_amthi_guid) == 0) {
                dev_dbg(&dev->pdev->dev, "FW Client is amthi\n");
index 22afc92319b3260c691ce773c53d2b1f092aaada..64456cec2e0604a13de08d90605cc19c8d2b459a 100644 (file)
@@ -430,7 +430,7 @@ static ssize_t mei_read(struct file *file, char __user *ubuf,
                goto free;
        } else if ((!cl->read_cb || !cl->read_cb->information) &&
                    *offset > 0) {
-               /*Offset needs to be cleaned for contingous reads*/
+               /*Offset needs to be cleaned for contiguous reads*/
                *offset = 0;
                rets = 0;
                goto out;
@@ -493,7 +493,7 @@ copy_buffer:
                goto free;
        }
 
-       /* length is being turncated to PAGE_SIZE, however, */
+       /* length is being truncated to PAGE_SIZE, however, */
        /* information size may be longer */
        length = min_t(size_t, length, (cb->information - *offset));
 
index 970f2d3316aafb3bf721502cece39ec1aeab2ffa..ac2a507be253c672e21bdfaee018fade352f0ed9 100644 (file)
@@ -77,7 +77,7 @@
 #include "mei.h"
 
 /*****************************************************************************
- * Intel Management Enginin Interface
+ * Intel Management Engine Interface
  *****************************************************************************/
 
 #define mei_msg(_me, fmt, ARGS...) do {         \
index b09b11cbe30d76847c1afd6ef1a8f4deab5ca9ab..bc0d8b69c49e51bbae1bd780028b4422c2d284cb 100644 (file)
@@ -77,7 +77,7 @@
  * Only in close() (file_operation release()) the communication between
  * the clients is disconnected
  *
- * The IOCTL argument is a struct with a union the contains
+ * The IOCTL argument is a struct with a union that contains
  * the input parameter and the output parameter for this IOCTL.
  *
  * The input parameter is UUID of the FW Client.
index 516bfe7319a68c1b769061deb0807c8cf645f5d7..2785697da59d717b831ac24e2860f5e202cf577f 100644 (file)
@@ -4,7 +4,7 @@ Intel(R) Management Engine Interface (Intel(R) MEI)
 Introduction
 =======================
 
-The Intel Management Engine (Intel ME) is an isolated andprotected computing
+The Intel Management Engine (Intel ME) is an isolated and protected computing
 resource (Co-processor) residing inside certain Intel chipsets. The Intel ME
 provides support for computer/IT management features. The feature set
 depends on the Intel chipset SKU.
@@ -176,8 +176,8 @@ Intel AMT OS Health Watchdog:
 =============================
 The Intel AMT Watchdog is an OS Health (Hang/Crash) watchdog.
 Whenever the OS hangs or crashes, Intel AMT will send an event
-to any subsciber to this event. This mechanism means that
-IT knows when a platform crashes even when there is a hard failureon the host.
+to any subscriber to this event. This mechanism means that
+IT knows when a platform crashes even when there is a hard failure on the host.
 
 The Intel AMT Watchdog is composed of two parts:
        1) Firmware feature - receives the heartbeats
index 0d937b0753221f23caab2f1301cb636caeefd618..10b1b4e2f8ac9e65dded0f48a0f9e65631a30ebb 100644 (file)
@@ -89,7 +89,7 @@ enum mei_states {
        MEI_POWER_UP
 };
 
-/* init clients  states*/
+/* init clients states*/
 enum mei_init_clients_states {
        MEI_START_MESSAGE = 0,
        MEI_ENUM_CLIENTS_MESSAGE,