mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/4]arch:mips:kernel Fix typo "shud"
@ 2011-08-13  0:26 Justin P. Mattock
  2011-08-13  0:26 ` [PATCH 2/4]drivers:atm:iphase.c Fix a " Justin P. Mattock
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Justin P. Mattock @ 2011-08-13  0:26 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

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

The patch below fixes a typo.

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

---
 arch/mips/kernel/cevt-bcm1480.c |    2 +-
 arch/mips/kernel/cevt-sb1250.c  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c
index 36c3898..c8d0577 100644
--- a/arch/mips/kernel/cevt-bcm1480.c
+++ b/arch/mips/kernel/cevt-bcm1480.c
@@ -63,7 +63,7 @@ static void sibyte_set_mode(enum clock_event_mode mode,
 		__raw_writeq(0, cfg);
 		break;
 
-	case CLOCK_EVT_MODE_UNUSED:	/* shuddup gcc */
+	case CLOCK_EVT_MODE_UNUSED:	/* quiet gcc */
 	case CLOCK_EVT_MODE_RESUME:
 		;
 	}
diff --git a/arch/mips/kernel/cevt-sb1250.c b/arch/mips/kernel/cevt-sb1250.c
index 590c54f..c189741 100644
--- a/arch/mips/kernel/cevt-sb1250.c
+++ b/arch/mips/kernel/cevt-sb1250.c
@@ -61,7 +61,7 @@ static void sibyte_set_mode(enum clock_event_mode mode,
 		__raw_writeq(0, cfg);
 		break;
 
-	case CLOCK_EVT_MODE_UNUSED:	/* shuddup gcc */
+	case CLOCK_EVT_MODE_UNUSED:	/* quiet gcc */
 	case CLOCK_EVT_MODE_RESUME:
 		;
 	}
-- 
1.7.6


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

* [PATCH 2/4]drivers:atm:iphase.c Fix a typo "shud"
  2011-08-13  0:26 [PATCH 1/4]arch:mips:kernel Fix typo "shud" Justin P. Mattock
@ 2011-08-13  0:26 ` Justin P. Mattock
  2011-08-13  0:26 ` [PATCH 3/4]drivers:staging Fix " Justin P. Mattock
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Justin P. Mattock @ 2011-08-13  0:26 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

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

The patch below fixes a typo shud.

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

---
 drivers/atm/iphase.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c
index cb90f7a..bc6bf9e 100644
--- a/drivers/atm/iphase.c
+++ b/drivers/atm/iphase.c
@@ -1089,7 +1089,7 @@ static int rx_pkt(struct atm_dev *dev)
                                     iadev->reass_ram, iadev->rfL.pcq_rd, desc);
               printk(" pcq_wr_ptr = 0x%x\n",
                                readw(iadev->reass_reg+PCQ_WR_PTR)&0xffff);)
-	/* update the read pointer  - maybe we shud do this in the end*/  
+	/* update the read pointer  - maybe we should do this in the end*/  
 	if ( iadev->rfL.pcq_rd== iadev->rfL.pcq_ed) 
 		iadev->rfL.pcq_rd = iadev->rfL.pcq_st;  
 	else  
@@ -1167,7 +1167,7 @@ static int rx_pkt(struct atm_dev *dev)
 	wr_ptr->bytes = len;	/* We don't know this do we ?? */  
 	wr_ptr->mode = DMA_INT_ENABLE;  
   
-	/* shud take care of wrap around here too. */  
+	/* should take care of wrap around here too. */  
         if(++wr_ptr == iadev->rx_dle_q.end)
              wr_ptr = iadev->rx_dle_q.start;
 	iadev->rx_dle_q.write = wr_ptr;  
@@ -2509,7 +2509,7 @@ static int __devinit ia_start(struct atm_dev *dev)
 			| CTRL_B64  
 			| CTRL_B128  
 			| CTRL_ERRMASK  
-			| CTRL_DLETMASK		/* shud be removed l8r */  
+			| CTRL_DLETMASK		/* should be removed l8r */  
 			| CTRL_DLERMASK  
 			| CTRL_SEGMASK  
 			| CTRL_REASSMASK 	  
-- 
1.7.6


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

* [PATCH 3/4]drivers:staging Fix typo "shud"
  2011-08-13  0:26 [PATCH 1/4]arch:mips:kernel Fix typo "shud" Justin P. Mattock
  2011-08-13  0:26 ` [PATCH 2/4]drivers:atm:iphase.c Fix a " Justin P. Mattock
@ 2011-08-13  0:26 ` Justin P. Mattock
  2011-08-13  5:52   ` Joe Perches
  2011-08-13  0:26 ` [PATCH 4/4]sound:pci " Justin P. Mattock
  2011-08-13  5:01 ` [PATCH 1/4]arch:mips:kernel " Hillf Danton
  3 siblings, 1 reply; 7+ messages in thread
From: Justin P. Mattock @ 2011-08-13  0:26 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

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

The patch below fixes a typo shud.

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

---
 drivers/staging/ath6kl/os/linux/ar6000_drv.c       |    2 +-
 .../staging/intel_sst/intel_sst_app_interface.c    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ath6kl/os/linux/ar6000_drv.c b/drivers/staging/ath6kl/os/linux/ar6000_drv.c
index 32ee39a..b93e1b4 100644
--- a/drivers/staging/ath6kl/os/linux/ar6000_drv.c
+++ b/drivers/staging/ath6kl/os/linux/ar6000_drv.c
@@ -1934,7 +1934,7 @@ ar6000_stop_endpoint(struct net_device *dev, bool keepprofile, bool getdbglogs)
             ar->arWmiEnabled = false;
             ar->arWmi = NULL;
             /* 
-             * After wmi_shudown all WMI events will be dropped.
+             * After wmi_shutown all WMI events will be dropped.
              * We need to cleanup the buffers allocated in AP mode
              * and give disconnect notification to stack, which usually
              * happens in the disconnect_event. 
diff --git a/drivers/staging/intel_sst/intel_sst_app_interface.c b/drivers/staging/intel_sst/intel_sst_app_interface.c
index 93b41a2..e3efe63 100644
--- a/drivers/staging/intel_sst/intel_sst_app_interface.c
+++ b/drivers/staging/intel_sst/intel_sst_app_interface.c
@@ -1288,7 +1288,7 @@ long intel_sst_ioctl(struct file *file_ptr, unsigned int cmd, unsigned long arg)
 
 		pr_debug("SNDRV_SST_DRIVER_INFO received\n");
 		info.version = SST_VERSION_NUM;
-		/* hard coding, shud get sumhow later */
+		/* hard coding, should go somewhere later. */
 		info.active_pcm_streams = sst_drv_ctx->stream_cnt -
 						sst_drv_ctx->encoded_cnt;
 		info.active_enc_streams = sst_drv_ctx->encoded_cnt;
-- 
1.7.6


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

* [PATCH 4/4]sound:pci Fix typo "shud"
  2011-08-13  0:26 [PATCH 1/4]arch:mips:kernel Fix typo "shud" Justin P. Mattock
  2011-08-13  0:26 ` [PATCH 2/4]drivers:atm:iphase.c Fix a " Justin P. Mattock
  2011-08-13  0:26 ` [PATCH 3/4]drivers:staging Fix " Justin P. Mattock
@ 2011-08-13  0:26 ` Justin P. Mattock
  2011-08-14  3:27   ` Calvin Walton
  2011-08-13  5:01 ` [PATCH 1/4]arch:mips:kernel " Hillf Danton
  3 siblings, 1 reply; 7+ messages in thread
From: Justin P. Mattock @ 2011-08-13  0:26 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel, Justin P. Mattock

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

The patch below fixes a typo shud.

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

---
 sound/pci/au88x0/au88x0_a3d.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/pci/au88x0/au88x0_a3d.c b/sound/pci/au88x0/au88x0_a3d.c
index 9ae8b3b..bae67c2 100644
--- a/sound/pci/au88x0/au88x0_a3d.c
+++ b/sound/pci/au88x0/au88x0_a3d.c
@@ -593,7 +593,7 @@ static int Vort3DRend_Initialize(vortex_t * v, unsigned short mode)
 
 static int vortex_a3d_register_controls(vortex_t * vortex);
 static void vortex_a3d_unregister_controls(vortex_t * vortex);
-/* A3D base support init/shudown */
+/* A3D base support init/shutown */
 static void __devinit vortex_Vort3D_enable(vortex_t * v)
 {
 	int i;
-- 
1.7.6


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

* Re: [PATCH 1/4]arch:mips:kernel Fix typo "shud"
  2011-08-13  0:26 [PATCH 1/4]arch:mips:kernel Fix typo "shud" Justin P. Mattock
                   ` (2 preceding siblings ...)
  2011-08-13  0:26 ` [PATCH 4/4]sound:pci " Justin P. Mattock
@ 2011-08-13  5:01 ` Hillf Danton
  3 siblings, 0 replies; 7+ messages in thread
From: Hillf Danton @ 2011-08-13  5:01 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: trivial, linux-kernel

On Sat, Aug 13, 2011 at 8:26 AM, Justin P. Mattock
<justinmattock@gmail.com> wrote:
> From: "Justin P. Mattock" <justinmattock@gmail.com>
>
> The patch below fixes a typo.
>
> Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
>
Acked-by: Hillf Danton <dhillf@gmail.com>

---
The skill/technique to tame gmail to deliver git diff is still not clear ;-)

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

* Re: [PATCH 3/4]drivers:staging Fix typo "shud"
  2011-08-13  0:26 ` [PATCH 3/4]drivers:staging Fix " Justin P. Mattock
@ 2011-08-13  5:52   ` Joe Perches
  0 siblings, 0 replies; 7+ messages in thread
From: Joe Perches @ 2011-08-13  5:52 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: trivial, linux-kernel

On Fri, 2011-08-12 at 17:26 -0700, Justin P. Mattock wrote:
> From: "Justin P. Mattock" <justinmattock@gmail.com>
> The patch below fixes a typo shud.
>  drivers/staging/ath6kl/os/linux/ar6000_drv.c       |    2 +-
> diff --git a/drivers/staging/ath6kl/os/linux/ar6000_drv.c b/drivers/staging/ath6kl/os/linux/ar6000_drv.c
[]
> @@ -1934,7 +1934,7 @@ ar6000_stop_endpoint(struct net_device *dev, bool keepprofile, bool getdbglogs)
[]
> -             * After wmi_shudown all WMI events will be dropped.
> +             * After wmi_shutown all WMI events will be dropped.

Please use a spell checker or read your patches after
auto generating them.

shutdown

Patch 4 as the same spelling typo.
Patch 2 has a leet speek use of l8r you could fix too.


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

* Re: [PATCH 4/4]sound:pci Fix typo "shud"
  2011-08-13  0:26 ` [PATCH 4/4]sound:pci " Justin P. Mattock
@ 2011-08-14  3:27   ` Calvin Walton
  0 siblings, 0 replies; 7+ messages in thread
From: Calvin Walton @ 2011-08-14  3:27 UTC (permalink / raw)
  To: Justin P. Mattock; +Cc: trivial, linux-kernel

On Fri, 2011-08-12 at 17:26 -0700, Justin P. Mattock wrote:
> From: "Justin P. Mattock" <justinmattock@gmail.com>
> 
> The patch below fixes a typo shud.

> diff --git a/sound/pci/au88x0/au88x0_a3d.c b/sound/pci/au88x0/au88x0_a3d.c

> -/* A3D base support init/shudown */
> +/* A3D base support init/shutown */

I agree that this is a typo, but you don't have the fix quite right :)
"shutdown" would be better.

-- 
Calvin Walton <calvin.walton@kepstin.ca>


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

end of thread, other threads:[~2011-08-14  3:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-13  0:26 [PATCH 1/4]arch:mips:kernel Fix typo "shud" Justin P. Mattock
2011-08-13  0:26 ` [PATCH 2/4]drivers:atm:iphase.c Fix a " Justin P. Mattock
2011-08-13  0:26 ` [PATCH 3/4]drivers:staging Fix " Justin P. Mattock
2011-08-13  5:52   ` Joe Perches
2011-08-13  0:26 ` [PATCH 4/4]sound:pci " Justin P. Mattock
2011-08-14  3:27   ` Calvin Walton
2011-08-13  5:01 ` [PATCH 1/4]arch:mips:kernel " Hillf Danton

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

all inboxes | Powered by JetHome®