Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1250144 > unrolled thread

[PATCH 1/9] drm: fix trivial typos

Started byGeliang Tang <geliangtang@163.com>
First post2015-10-18 17:40 +0200
Last post2015-10-19 17:50 +0200
Articles 15 — 7 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/9] drm: fix trivial typos Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
    [PATCH 8/9] parport: fix a trivial typo Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
      Re: [PATCH 8/9] parport: fix a trivial typo Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2015-10-27 11:50 +0100
    [PATCH 9/9] usb: gadget: fix a trivial typo Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
    [PATCH 7/9] input: keyboard: fix a trivial typo Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
      Re: [PATCH 7/9] input: keyboard: fix a trivial typo Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2015-10-20 18:50 +0200
    [PATCH 3/9] net: fix trivial typos Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
    [PATCH 4/9] dma: fix a trivial typo Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
      Re: [PATCH 4/9] dma: fix a trivial typo Linus Walleij <linus.walleij@linaro.org> - 2015-10-24 01:30 +0200
      Re: [PATCH 4/9] dma: fix a trivial typo Vinod Koul <vinod.koul@intel.com> - 2015-10-25 00:50 +0200
    [PATCH 5/9] staging: wilc1000: fix trivial typos Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
    [PATCH 6/9] clk: keystone: fix a trivial typo Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
      Re: [PATCH 6/9] clk: keystone: fix a trivial typo Stephen Boyd <sboyd@codeaurora.org> - 2015-10-19 23:50 +0200
    [PATCH 2/9] scsi: fix trivial typos Geliang Tang <geliangtang@163.com> - 2015-10-18 17:40 +0200
    Re: [PATCH 1/9] drm: fix trivial typos Alex Deucher <alexdeucher@gmail.com> - 2015-10-19 17:50 +0200

#1250144 — [PATCH 1/9] drm: fix trivial typos

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 1/9] drm: fix trivial typos
Message-ID<qkYdY-Wh-1@gated-at.bofh.it>
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/gpu/drm/amd/include/atombios.h          | 2 +-
 drivers/gpu/drm/radeon/cayman_blit_shaders.c    | 2 +-
 drivers/gpu/drm/radeon/evergreen_blit_shaders.c | 2 +-
 drivers/gpu/drm/radeon/r600_blit_shaders.c      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/include/atombios.h b/drivers/gpu/drm/amd/include/atombios.h
index 44c5d4a..5526226 100644
--- a/drivers/gpu/drm/amd/include/atombios.h
+++ b/drivers/gpu/drm/amd/include/atombios.h
@@ -6784,7 +6784,7 @@ typedef struct _ATOM_MC_INIT_PARAM_TABLE_V2_1
   ULONG                         ulMCUcodeRomStartAddr;
   ULONG                         ulMCUcodeLength;
   USHORT                        usMcRegInitTableOffset;     // offset of ATOM_REG_INIT_SETTING array for MC core register settings.
-  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY regsiter setting
+  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY register setting
 }ATOM_MC_INIT_PARAM_TABLE_V2_1;
 
 
diff --git a/drivers/gpu/drm/radeon/cayman_blit_shaders.c b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
index 98d009e..9fec4d0 100644
--- a/drivers/gpu/drm/radeon/cayman_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
@@ -32,7 +32,7 @@
  * evergreen cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
diff --git a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
index d433834..1a96ddb 100644
--- a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
@@ -32,7 +32,7 @@
  * evergreen cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
diff --git a/drivers/gpu/drm/radeon/r600_blit_shaders.c b/drivers/gpu/drm/radeon/r600_blit_shaders.c
index 34c8b23..443cbe5 100644
--- a/drivers/gpu/drm/radeon/r600_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/r600_blit_shaders.c
@@ -32,7 +32,7 @@
  * R6xx+ cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1250145 — [PATCH 8/9] parport: fix a trivial typo

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 8/9] parport: fix a trivial typo
Message-ID<qkYdY-Wh-9@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/parport/share.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/parport/share.c b/drivers/parport/share.c
index 5ce5ef2..8931696 100644
--- a/drivers/parport/share.c
+++ b/drivers/parport/share.c
@@ -148,7 +148,7 @@ void parport_bus_exit(void)
 /*
  * iterates through all the drivers registered with the bus and sends the port
  * details to the match_port callback of the driver, so that the driver can
- * know about the new port that just regsitered with the bus and decide if it
+ * know about the new port that just registered with the bus and decide if it
  * wants to use this new port.
  */
 static int driver_check(struct device_driver *dev_drv, void *_port)
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1256678 — Re: [PATCH 8/9] parport: fix a trivial typo

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2015-10-27 11:50 +0100
SubjectRe: [PATCH 8/9] parport: fix a trivial typo
Message-ID<qo9Zf-48B-7@gated-at.bofh.it>
In reply to#1250145
On Sun, Oct 18, 2015 at 11:31:14PM +0800, Geliang Tang wrote:
> s/regsiter/register/
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>
> ---

Hi Greg,
I have applied it to my local tree as of now. Will forward you this one
along with some other cheanup patches.

regards
sudip
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250146 — [PATCH 9/9] usb: gadget: fix a trivial typo

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 9/9] usb: gadget: fix a trivial typo
Message-ID<qkYdY-Wh-11@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/usb/gadget/udc/pch_udc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/gadget/udc/pch_udc.c b/drivers/usb/gadget/udc/pch_udc.c
index 3181fc9..7a04157 100644
--- a/drivers/usb/gadget/udc/pch_udc.c
+++ b/drivers/usb/gadget/udc/pch_udc.c
@@ -330,7 +330,7 @@ struct pch_vbus_gpio_data {
  * @prot_stall:		protcol stall requested
  * @irq_registered:	irq registered with system
  * @mem_region:		device memory mapped
- * @registered:		driver regsitered with system
+ * @registered:		driver registered with system
  * @suspended:		driver in suspended state
  * @connected:		gadget driver associated
  * @vbus_session:	required vbus_session state
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250147 — [PATCH 7/9] input: keyboard: fix a trivial typo

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 7/9] input: keyboard: fix a trivial typo
Message-ID<qkYdY-Wh-15@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/input/keyboard/nomadik-ske-keypad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/keyboard/nomadik-ske-keypad.c b/drivers/input/keyboard/nomadik-ske-keypad.c
index c7d5b16..8567ee4 100644
--- a/drivers/input/keyboard/nomadik-ske-keypad.c
+++ b/drivers/input/keyboard/nomadik-ske-keypad.c
@@ -54,7 +54,7 @@
 /**
  * struct ske_keypad  - data structure used by keypad driver
  * @irq:	irq no
- * @reg_base:	ske regsiters base address
+ * @reg_base:	ske registers base address
  * @input:	pointer to input device object
  * @board:	keypad platform device
  * @keymap:	matrix scan code table for keycodes
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1251876 — Re: [PATCH 7/9] input: keyboard: fix a trivial typo

FromDmitry Torokhov <dmitry.torokhov@gmail.com>
Date2015-10-20 18:50 +0200
SubjectRe: [PATCH 7/9] input: keyboard: fix a trivial typo
Message-ID<qlIgO-YP-23@gated-at.bofh.it>
In reply to#1250147
On Sun, Oct 18, 2015 at 11:31:13PM +0800, Geliang Tang wrote:
> s/regsiter/register/
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Applied, thank you.

> ---
>  drivers/input/keyboard/nomadik-ske-keypad.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/input/keyboard/nomadik-ske-keypad.c b/drivers/input/keyboard/nomadik-ske-keypad.c
> index c7d5b16..8567ee4 100644
> --- a/drivers/input/keyboard/nomadik-ske-keypad.c
> +++ b/drivers/input/keyboard/nomadik-ske-keypad.c
> @@ -54,7 +54,7 @@
>  /**
>   * struct ske_keypad  - data structure used by keypad driver
>   * @irq:	irq no
> - * @reg_base:	ske regsiters base address
> + * @reg_base:	ske registers base address
>   * @input:	pointer to input device object
>   * @board:	keypad platform device
>   * @keymap:	matrix scan code table for keycodes
> -- 
> 2.5.0
> 
> 

-- 
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250148 — [PATCH 3/9] net: fix trivial typos

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 3/9] net: fix trivial typos
Message-ID<qkYdY-Wh-17@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/net/ethernet/amd/amd8111e.h           | 2 +-
 drivers/net/ethernet/atheros/atl1c/atl1c_hw.c | 2 +-
 drivers/net/ethernet/intel/igb/e1000_phy.c    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/amd/amd8111e.h b/drivers/net/ethernet/amd/amd8111e.h
index 7cdb185..d5e2b71 100644
--- a/drivers/net/ethernet/amd/amd8111e.h
+++ b/drivers/net/ethernet/amd/amd8111e.h
@@ -48,7 +48,7 @@ eg., if the value 10011010b is written into the least significant byte of a comm
 /* 32 bit registers */
 
 #define  ASF_STAT		0x00	/* ASF status register */
-#define CHIPID			0x04	/* Chip ID regsiter */
+#define CHIPID			0x04	/* Chip ID register */
 #define	MIB_DATA		0x10	/* MIB data register */
 #define MIB_ADDR		0x14	/* MIB address register */
 #define STAT0			0x30	/* Status0 register */
diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c b/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
index a8b80c5..73efdb0 100644
--- a/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
+++ b/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
@@ -307,7 +307,7 @@ void atl1c_start_phy_polling(struct atl1c_hw *hw, u16 clk_sel)
 
 /*
  * atl1c_read_phy_core
- * core function to read register in PHY via MDIO control regsiter.
+ * core function to read register in PHY via MDIO control register.
  * ext: extension register (see IEEE 802.3)
  * dev: device address (see IEEE 802.3 DEVAD, PRTAD is fixed to 0)
  * reg: reg to read
diff --git a/drivers/net/ethernet/intel/igb/e1000_phy.c b/drivers/net/ethernet/intel/igb/e1000_phy.c
index 23ec28f..ffc3a14 100644
--- a/drivers/net/ethernet/intel/igb/e1000_phy.c
+++ b/drivers/net/ethernet/intel/igb/e1000_phy.c
@@ -123,7 +123,7 @@ out:
  *  @offset: register offset to be read
  *  @data: pointer to the read data
  *
- *  Reads the MDI control regsiter in the PHY at offset and stores the
+ *  Reads the MDI control register in the PHY at offset and stores the
  *  information read to data.
  **/
 s32 igb_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250149 — [PATCH 4/9] dma: fix a trivial typo

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 4/9] dma: fix a trivial typo
Message-ID<qkYdY-Wh-7@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/dma/ste_dma40.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c
index 750d1b3..dd3e7ba 100644
--- a/drivers/dma/ste_dma40.c
+++ b/drivers/dma/ste_dma40.c
@@ -2907,7 +2907,7 @@ static int __init d40_dmaengine_init(struct d40_base *base,
 
 	if (err) {
 		d40_err(base->dev,
-			"Failed to regsiter memcpy only channels\n");
+			"Failed to register memcpy only channels\n");
 		goto failure2;
 	}
 
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1255049 — Re: [PATCH 4/9] dma: fix a trivial typo

FromLinus Walleij <linus.walleij@linaro.org>
Date2015-10-24 01:30 +0200
SubjectRe: [PATCH 4/9] dma: fix a trivial typo
Message-ID<qmTWx-7MT-5@gated-at.bofh.it>
In reply to#1250149
On Sun, Oct 18, 2015 at 5:31 PM, Geliang Tang <geliangtang@163.com> wrote:

> s/regsiter/register/
>
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Acked-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1255262 — Re: [PATCH 4/9] dma: fix a trivial typo

FromVinod Koul <vinod.koul@intel.com>
Date2015-10-25 00:50 +0200
SubjectRe: [PATCH 4/9] dma: fix a trivial typo
Message-ID<qnfNn-5F0-1@gated-at.bofh.it>
In reply to#1250149
On Sun, Oct 18, 2015 at 11:31:10PM +0800, Geliang Tang wrote:
> s/regsiter/register/
> 
Applied, now

Please ensure the patches have right subsystem names. You can use git log on
that file/subsystem to find the convention used

I have fixed it up before applying

-- 
~Vinod
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250150 — [PATCH 5/9] staging: wilc1000: fix trivial typos

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 5/9] staging: wilc1000: fix trivial typos
Message-ID<qkYdY-Wh-19@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/staging/wilc1000/linux_wlan.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c
index ccab89f..6dc5faf 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -1880,10 +1880,10 @@ static void __exit exit_wilc_driver(void)
 	}
 
 #ifndef WILC_SDIO
-	PRINT_D(INIT_DBG, "SPI unregsiter...\n");
+	PRINT_D(INIT_DBG, "SPI unregister...\n");
 	spi_unregister_driver(&wilc_bus);
 #else
-	PRINT_D(INIT_DBG, "SDIO unregsiter...\n");
+	PRINT_D(INIT_DBG, "SDIO unregister...\n");
 	sdio_unregister_driver(&wilc_bus);
 #endif
 
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250151 — [PATCH 6/9] clk: keystone: fix a trivial typo

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 6/9] clk: keystone: fix a trivial typo
Message-ID<qkYdZ-Wh-27@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/clk/keystone/pll.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/keystone/pll.c b/drivers/clk/keystone/pll.c
index 3f553d0..a26ba21 100644
--- a/drivers/clk/keystone/pll.c
+++ b/drivers/clk/keystone/pll.c
@@ -157,7 +157,7 @@ out:
  * _of_clk_init - PLL initialisation via DT
  * @node: device tree node for this clock
  * @pllctrl: If true, lower 6 bits of multiplier is in pllm register of
- *		pll controller, else it is in the control regsiter0(bit 11-6)
+ *		pll controller, else it is in the control register0(bit 11-6)
  */
 static void __init _of_pll_clk_init(struct device_node *node, bool pllctrl)
 {
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1251103 — Re: [PATCH 6/9] clk: keystone: fix a trivial typo

FromStephen Boyd <sboyd@codeaurora.org>
Date2015-10-19 23:50 +0200
SubjectRe: [PATCH 6/9] clk: keystone: fix a trivial typo
Message-ID<qlqtz-eC-19@gated-at.bofh.it>
In reply to#1250151
On 10/18, Geliang Tang wrote:
> s/regsiter/register/
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>
> ---

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250152 — [PATCH 2/9] scsi: fix trivial typos

FromGeliang Tang <geliangtang@163.com>
Date2015-10-18 17:40 +0200
Subject[PATCH 2/9] scsi: fix trivial typos
Message-ID<qkYdZ-Wh-31@gated-at.bofh.it>
In reply to#1250144
s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/scsi/isci/registers.h       | 4 ++--
 drivers/scsi/mpt2sas/mpt2sas_base.h | 2 +-
 drivers/scsi/mpt3sas/mpt3sas_base.h | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/scsi/isci/registers.h b/drivers/scsi/isci/registers.h
index 97f3ceb..63468cf 100644
--- a/drivers/scsi/isci/registers.h
+++ b/drivers/scsi/isci/registers.h
@@ -652,7 +652,7 @@ struct scu_iit_entry {
 
 
 /*
- * TODO: Where is the SAS_LNKTOV regsiter?
+ * TODO: Where is the SAS_LNKTOV register?
  * TODO: Where is the SAS_PHYTOV register? */
 
 #define SCU_SAS_TRANSMIT_IDENTIFICATION_SMP_TARGET_SHIFT            (1)
@@ -1827,7 +1827,7 @@ struct scu_peg_registers {
 };
 
 /**
- * struct scu_registers - SCU regsiters including both PEG registers if we turn
+ * struct scu_registers - SCU registers including both PEG registers if we turn
  *    on that compile option. All of these registers are in the memory mapped
  *    space returned from BAR1.
  *
diff --git a/drivers/scsi/mpt2sas/mpt2sas_base.h b/drivers/scsi/mpt2sas/mpt2sas_base.h
index 97ea360..9cc79cf 100644
--- a/drivers/scsi/mpt2sas/mpt2sas_base.h
+++ b/drivers/scsi/mpt2sas/mpt2sas_base.h
@@ -1209,7 +1209,7 @@ void mpt2sas_ctl_add_to_event_log(struct MPT2SAS_ADAPTER *ioc,
     Mpi2EventNotificationReply_t *mpi_reply);
 
 void mpt2sas_enable_diag_buffer(struct MPT2SAS_ADAPTER *ioc,
-	u8 bits_to_regsiter);
+	u8 bits_to_register);
 
 /* transport shared API */
 u8 mpt2sas_transport_done(struct MPT2SAS_ADAPTER *ioc, u16 smid, u8 msix_index,
diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.h b/drivers/scsi/mpt3sas/mpt3sas_base.h
index 9a73c8b..b95f932 100644
--- a/drivers/scsi/mpt3sas/mpt3sas_base.h
+++ b/drivers/scsi/mpt3sas/mpt3sas_base.h
@@ -1211,7 +1211,7 @@ void mpt3sas_ctl_add_to_event_log(struct MPT3SAS_ADAPTER *ioc,
 	Mpi2EventNotificationReply_t *mpi_reply);
 
 void mpt3sas_enable_diag_buffer(struct MPT3SAS_ADAPTER *ioc,
-	u8 bits_to_regsiter);
+	u8 bits_to_register);
 int mpt3sas_send_diag_release(struct MPT3SAS_ADAPTER *ioc, u8 buffer_type,
 	u8 *issue_reset);
 
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1250862

FromAlex Deucher <alexdeucher@gmail.com>
Date2015-10-19 17:50 +0200
Message-ID<qlkRd-ll-33@gated-at.bofh.it>
In reply to#1250144
On Sun, Oct 18, 2015 at 11:29 AM, Geliang Tang <geliangtang@163.com> wrote:
> s/regsiter/register/
>
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Applied.  thanks!

Alex

> ---
>  drivers/gpu/drm/amd/include/atombios.h          | 2 +-
>  drivers/gpu/drm/radeon/cayman_blit_shaders.c    | 2 +-
>  drivers/gpu/drm/radeon/evergreen_blit_shaders.c | 2 +-
>  drivers/gpu/drm/radeon/r600_blit_shaders.c      | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/include/atombios.h b/drivers/gpu/drm/amd/include/atombios.h
> index 44c5d4a..5526226 100644
> --- a/drivers/gpu/drm/amd/include/atombios.h
> +++ b/drivers/gpu/drm/amd/include/atombios.h
> @@ -6784,7 +6784,7 @@ typedef struct _ATOM_MC_INIT_PARAM_TABLE_V2_1
>    ULONG                         ulMCUcodeRomStartAddr;
>    ULONG                         ulMCUcodeLength;
>    USHORT                        usMcRegInitTableOffset;     // offset of ATOM_REG_INIT_SETTING array for MC core register settings.
> -  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY regsiter setting
> +  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY register setting
>  }ATOM_MC_INIT_PARAM_TABLE_V2_1;
>
>
> diff --git a/drivers/gpu/drm/radeon/cayman_blit_shaders.c b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
> index 98d009e..9fec4d0 100644
> --- a/drivers/gpu/drm/radeon/cayman_blit_shaders.c
> +++ b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
> @@ -32,7 +32,7 @@
>   * evergreen cards need to use the 3D engine to blit data which requires
>   * quite a bit of hw state setup.  Rather than pull the whole 3D driver
>   * (which normally generates the 3D state) into the DRM, we opt to use
> - * statically generated state tables.  The regsiter state and shaders
> + * statically generated state tables.  The register state and shaders
>   * were hand generated to support blitting functionality.  See the 3D
>   * driver or documentation for descriptions of the registers and
>   * shader instructions.
> diff --git a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
> index d433834..1a96ddb 100644
> --- a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
> +++ b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
> @@ -32,7 +32,7 @@
>   * evergreen cards need to use the 3D engine to blit data which requires
>   * quite a bit of hw state setup.  Rather than pull the whole 3D driver
>   * (which normally generates the 3D state) into the DRM, we opt to use
> - * statically generated state tables.  The regsiter state and shaders
> + * statically generated state tables.  The register state and shaders
>   * were hand generated to support blitting functionality.  See the 3D
>   * driver or documentation for descriptions of the registers and
>   * shader instructions.
> diff --git a/drivers/gpu/drm/radeon/r600_blit_shaders.c b/drivers/gpu/drm/radeon/r600_blit_shaders.c
> index 34c8b23..443cbe5 100644
> --- a/drivers/gpu/drm/radeon/r600_blit_shaders.c
> +++ b/drivers/gpu/drm/radeon/r600_blit_shaders.c
> @@ -32,7 +32,7 @@
>   * R6xx+ cards need to use the 3D engine to blit data which requires
>   * quite a bit of hw state setup.  Rather than pull the whole 3D driver
>   * (which normally generates the 3D state) into the DRM, we opt to use
> - * statically generated state tables.  The regsiter state and shaders
> + * statically generated state tables.  The register state and shaders
>   * were hand generated to support blitting functionality.  See the 3D
>   * driver or documentation for descriptions of the registers and
>   * shader instructions.
> --
> 2.5.0
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web