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


Groups > linux.kernel > #1540612

[PATCH 27/31] scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances

From Masahiro Yamada <yamada.masahiro@socionext.com>
Newsgroups linux.kernel
Subject [PATCH 27/31] scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances
Date 2016-12-12 21:20 +0100
Message-ID <sNFeP-lm-57@gated-at.bofh.it> (permalink)
References <sNF57-hS-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Fix typos and add the following to the scripts/spelling.txt:

  deintializing||deinitializing
  deintialize||deinitialize
  deintialized||deinitialized

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 drivers/crypto/caam/ctrl.c                        | 2 +-
 drivers/net/wireless/rsi/rsi_91x_usb.c            | 2 +-
 drivers/staging/wilc1000/linux_wlan.c             | 2 +-
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 2 +-
 scripts/spelling.txt                              | 3 +++
 sound/soc/amd/acp-pcm-dma.c                       | 2 +-
 6 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/crypto/caam/ctrl.c b/drivers/crypto/caam/ctrl.c
index 7551098..568ad2e 100644
--- a/drivers/crypto/caam/ctrl.c
+++ b/drivers/crypto/caam/ctrl.c
@@ -270,7 +270,7 @@ static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask)
 		/*
 		 * If the corresponding bit is set, then it means the state
 		 * handle was initialized by us, and thus it needs to be
-		 * deintialized as well
+		 * deinitialized as well
 		 */
 		if ((1 << sh_idx) & state_handle_mask) {
 			/*
diff --git a/drivers/net/wireless/rsi/rsi_91x_usb.c b/drivers/net/wireless/rsi/rsi_91x_usb.c
index ef5d394..cc8deec 100644
--- a/drivers/net/wireless/rsi/rsi_91x_usb.c
+++ b/drivers/net/wireless/rsi/rsi_91x_usb.c
@@ -516,7 +516,7 @@ static int rsi_probe(struct usb_interface *pfunction,
 
 /**
  * rsi_disconnect() - This function performs the reverse of the probe function,
- *		      it deintialize the driver structure.
+ *		      it deinitialize the driver structure.
  * @pfunction: Pointer to the USB interface structure.
  *
  * Return: None.
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c
index 3775706..e59cab5 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -213,7 +213,7 @@ static void deinit_irq(struct net_device *dev)
 	vif = netdev_priv(dev);
 	wilc = vif->wilc;
 
-	/* Deintialize IRQ */
+	/* Deinitialize IRQ */
 	if (wilc->dev_irq_num) {
 		free_irq(wilc->dev_irq_num, wilc);
 		gpio_free(wilc->gpio);
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
index c1a24f7..e11803b 100644
--- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
+++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
@@ -2347,7 +2347,7 @@ int wilc_deinit_host_int(struct net_device *net)
 		del_timer_sync(&wilc_during_ip_timer);
 
 	if (s32Error)
-		netdev_err(net, "Error while deintializing host interface\n");
+		netdev_err(net, "Error while deinitializing host interface\n");
 
 	return s32Error;
 }
diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index a4d0a42..c639876 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -317,6 +317,9 @@ defintion||definition
 defintions||definitions
 defualt||default
 defult||default
+deintializing||deinitializing
+deintialize||deinitialize
+deintialized||deinitialized
 deivce||device
 delared||declared
 delare||declare
diff --git a/sound/soc/amd/acp-pcm-dma.c b/sound/soc/amd/acp-pcm-dma.c
index df52cb0..79a7064 100644
--- a/sound/soc/amd/acp-pcm-dma.c
+++ b/sound/soc/amd/acp-pcm-dma.c
@@ -506,7 +506,7 @@ static int acp_init(void __iomem *acp_mmio)
 	return 0;
 }
 
-/* Deintialize ACP */
+/* Deinitialize ACP */
 static int acp_deinit(void __iomem *acp_mmio)
 {
 	u32 val;
-- 
2.7.4

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 00/31] scripts/spelling.txt: add more patterns with actual typo fixes Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 28/31] scripts/spelling.txt: add "overwritting" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  Re: [PATCH 00/31] scripts/spelling.txt: add more patterns with actual  typo fixes Kees Cook <keescook@chromium.org> - 2016-12-12 21:20 +0100
  [PATCH 22/31] scripts/spelling.txt: add "configuartion" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 25/31] scripts/spelling.txt: add "omited" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 18/31] scripts/spelling.txt: add "comsume(r)" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 03/31] scripts/spelling.txt: add "an user" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 11/31] scripts/spelling.txt: add "embeded" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 19/31] scripts/spelling.txt: add "disble(d)" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 21/31] scripts/spelling.txt: add "overrided" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 16/31] scripts/spelling.txt: add "initialiazation" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 27/31] scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 17/31] scripts/spelling.txt: add "intialise(d)" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 10/31] scripts/spelling.txt: add "varible" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 30/31] scripts/spelling.txt: add "therfore" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  [PATCH 23/31] scripts/spelling.txt: add "applys" pattern and fix typo instances Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-12 21:20 +0100
  Re: [PATCH 00/31] scripts/spelling.txt: add more patterns with  actual typo fixes Joe Perches <joe@perches.com> - 2016-12-12 21:30 +0100

csiph-web