public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer.
@ 2011-06-24  6:22 Justin P. Mattock
  2011-06-24  6:22 ` [PATCH 2/3]Remove one to many nnn's in some comments Justin P. Mattock
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Justin P. Mattock @ 2011-06-24  6:22 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

From: "Justin P. Mattock" <justinmattock@gmail.com>

The below patch fixes a typo.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>

---
 drivers/scsi/qla2xxx/qla_isr.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
index 1b60a95..ae8e298 100644
--- a/drivers/scsi/qla2xxx/qla_isr.c
+++ b/drivers/scsi/qla2xxx/qla_isr.c
@@ -63,7 +63,7 @@ qla2100_intr_handler(int irq, void *dev_id)
 
 			/*
 			 * Issue a "HARD" reset in order for the RISC interrupt
-			 * bit to be cleared.  Schedule a big hammmer to get
+			 * bit to be cleared.  Schedule a big hammer to get
 			 * out of the RISC PAUSED state.
 			 */
 			WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
@@ -169,7 +169,7 @@ qla2300_intr_handler(int irq, void *dev_id)
 			/*
 			 * Issue a "HARD" reset in order for the RISC
 			 * interrupt bit to be cleared.  Schedule a big
-			 * hammmer to get out of the RISC PAUSED state.
+			 * hammer to get out of the RISC PAUSED state.
 			 */
 			WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
 			RD_REG_WORD(&reg->hccr);
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3]Remove one to many nnn's in some comments.
  2011-06-24  6:22 [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
@ 2011-06-24  6:22 ` Justin P. Mattock
  2011-06-24  6:22 ` [PATCH 3/3]Remove one to many lll's " Justin P. Mattock
  2011-07-08 19:03 ` [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
  2 siblings, 0 replies; 4+ messages in thread
From: Justin P. Mattock @ 2011-06-24  6:22 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

From: "Justin P. Mattock" <justinmattock@gmail.com>

The patch below fixes some comments that seem to be typos. 

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>

---
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h |    2 +-
 drivers/usb/otg/fsl_otg.c                         |    2 +-
 net/mac80211/work.c                               |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h b/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h
index 3ef42b3..83755ab 100644
--- a/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h
+++ b/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h
@@ -76,7 +76,7 @@ extern void sdioh_sdmmc_osfree(sdioh_info_t *sd);
 
 struct sdioh_info {
 	struct osl_info *osh;		/* osh handler */
-	bool client_intr_enabled;	/* interrupt connnected flag */
+	bool client_intr_enabled;	/* interrupt connected flag */
 	bool intr_handler_valid;	/* client driver interrupt handler valid */
 	sdioh_cb_fn_t intr_handler;	/* registered interrupt handler */
 	void *intr_handler_arg;	/* argument to call interrupt handler */
diff --git a/drivers/usb/otg/fsl_otg.c b/drivers/usb/otg/fsl_otg.c
index 0f420b2..2d9cc44 100644
--- a/drivers/usb/otg/fsl_otg.c
+++ b/drivers/usb/otg/fsl_otg.c
@@ -639,7 +639,7 @@ static int fsl_otg_set_power(struct otg_transceiver *otg_p, unsigned mA)
  * Delayed pin detect interrupt processing.
  *
  * When the Mini-A cable is disconnected from the board,
- * the pin-detect interrupt happens before the disconnnect
+ * the pin-detect interrupt happens before the disconnect
  * interrupts for the connected device(s).  In order to
  * process the disconnect interrupt(s) prior to switching
  * roles, the pin-detect interrupts are delayed, and handled
diff --git a/net/mac80211/work.c b/net/mac80211/work.c
index d2e7f0e..a4fb304 100644
--- a/net/mac80211/work.c
+++ b/net/mac80211/work.c
@@ -1071,7 +1071,7 @@ static void ieee80211_work_work(struct work_struct *work)
 		local->tmp_channel = NULL;
 		/* If tmp_channel wasn't operating channel, then
 		 * we need to go back on-channel.
-		 * NOTE:  If we can ever be here while scannning,
+		 * NOTE:  If we can ever be here while scanning,
 		 * or if the hw_config() channel config logic changes,
 		 * then we may need to do a more thorough check to see if
 		 * we still need to do a hardware config.  Currently,
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3]Remove one to many lll's in some comments.
  2011-06-24  6:22 [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
  2011-06-24  6:22 ` [PATCH 2/3]Remove one to many nnn's in some comments Justin P. Mattock
@ 2011-06-24  6:22 ` Justin P. Mattock
  2011-07-08 19:03 ` [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
  2 siblings, 0 replies; 4+ messages in thread
From: Justin P. Mattock @ 2011-06-24  6:22 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

From: "Justin P. Mattock" <justinmattock@gmail.com>

The patch below fixes some comments.

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>

---
 drivers/acpi/acpica/hwxface.c  |    2 +-
 drivers/parport/parport_mfc3.c |    2 +-
 include/net/mac80211.h         |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/acpi/acpica/hwxface.c b/drivers/acpi/acpica/hwxface.c
index f75f81a..f34ba22 100644
--- a/drivers/acpi/acpica/hwxface.c
+++ b/drivers/acpi/acpica/hwxface.c
@@ -355,7 +355,7 @@ ACPI_EXPORT_SYMBOL(acpi_read_bit_register)
  *
  * PARAMETERS:  register_id     - ID of ACPI Bit Register to access
  *              Value           - Value to write to the register, in bit
- *                                position zero. The bit is automaticallly
+ *                                position zero. The bit is automatically
  *                                shifted to the correct position.
  *
  * RETURN:      Status
diff --git a/drivers/parport/parport_mfc3.c b/drivers/parport/parport_mfc3.c
index 362db31..1c0c642 100644
--- a/drivers/parport/parport_mfc3.c
+++ b/drivers/parport/parport_mfc3.c
@@ -397,7 +397,7 @@ static void __exit parport_mfc3_exit(void)
 
 
 MODULE_AUTHOR("Joerg Dorchain <joerg@dorchain.net>");
-MODULE_DESCRIPTION("Parport Driver for Multiface 3 expansion cards Paralllel Port");
+MODULE_DESCRIPTION("Parport Driver for Multiface 3 expansion cards Parallel Port");
 MODULE_SUPPORTED_DEVICE("Multiface 3 Parallel Port");
 MODULE_LICENSE("GPL");
 
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index e6d6a66..7486e4d 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -1390,7 +1390,7 @@ ieee80211_get_alt_retry_rate(const struct ieee80211_hw *hw,
  * DOC: Beacon filter support
  *
  * Some hardware have beacon filter support to reduce host cpu wakeups
- * which will reduce system power consumption. It usuallly works so that
+ * which will reduce system power consumption. It usually works so that
  * the firmware creates a checksum of the beacon but omits all constantly
  * changing elements (TSF, TIM etc). Whenever the checksum changes the
  * beacon is forwarded to the host, otherwise it will be just dropped. That
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer.
  2011-06-24  6:22 [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
  2011-06-24  6:22 ` [PATCH 2/3]Remove one to many nnn's in some comments Justin P. Mattock
  2011-06-24  6:22 ` [PATCH 3/3]Remove one to many lll's " Justin P. Mattock
@ 2011-07-08 19:03 ` Justin P. Mattock
  2 siblings, 0 replies; 4+ messages in thread
From: Justin P. Mattock @ 2011-07-08 19:03 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: trivial, linux-kernel, Jiri Kosina

jiri,
not sure if you git these, adding you to the Cc's list

> From: "Justin P. Mattock"<justinmattock@gmail.com>
>
> The below patch fixes a typo.
>
> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
>
> ---
>   drivers/scsi/qla2xxx/qla_isr.c |    4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
> index 1b60a95..ae8e298 100644
> --- a/drivers/scsi/qla2xxx/qla_isr.c
> +++ b/drivers/scsi/qla2xxx/qla_isr.c
> @@ -63,7 +63,7 @@ qla2100_intr_handler(int irq, void *dev_id)
>
>   			/*
>   			 * Issue a "HARD" reset in order for the RISC interrupt
> -			 * bit to be cleared.  Schedule a big hammmer to get
> +			 * bit to be cleared.  Schedule a big hammer to get
>   			 * out of the RISC PAUSED state.
>   			 */
>   			WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
> @@ -169,7 +169,7 @@ qla2300_intr_handler(int irq, void *dev_id)
>   			/*
>   			 * Issue a "HARD" reset in order for the RISC
>   			 * interrupt bit to be cleared.  Schedule a big
> -			 * hammmer to get out of the RISC PAUSED state.
> +			 * hammer to get out of the RISC PAUSED state.
>   			 */
>   			WRT_REG_WORD(&reg->hccr, HCCR_RESET_RISC);
>   			RD_REG_WORD(&reg->hccr);


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-07-08 19:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-24  6:22 [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock
2011-06-24  6:22 ` [PATCH 2/3]Remove one to many nnn's in some comments Justin P. Mattock
2011-06-24  6:22 ` [PATCH 3/3]Remove one to many lll's " Justin P. Mattock
2011-07-08 19:03 ` [PATCH 1/3]drivers:scsi:qla2xxx:qla_isr.c Typo fix hammmer Justin P. Mattock

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox