diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-02-27 17:29:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-27 21:43:47 -0500 |
commit | 1cce200081d182e0ae6b40bcb1cfdecfdfc09fe4 (patch) | |
tree | 123833d16e2ca1d7f0f1284de0c950d481c0d699 | |
parent | 66f00449086f76a6d859dfcbe7a2a151240b233c (diff) |
scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances
Fix typos and add the following to the scripts/spelling.txt:
deintializing||deinitializing
deintialize||deinitialize
deintialized||deinitialized
Link: http://lkml.kernel.org/r/1481573103-11329-28-git-send-email-yamada.masahiro@socionext.com
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/crypto/caam/ctrl.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/rsi/rsi_91x_usb.c | 2 | ||||
-rw-r--r-- | drivers/staging/wilc1000/linux_wlan.c | 2 | ||||
-rw-r--r-- | drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 2 | ||||
-rw-r--r-- | scripts/spelling.txt | 3 | ||||
-rw-r--r-- | 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 579f8263c479..fef39f9f41ee 100644 --- a/drivers/crypto/caam/ctrl.c +++ b/drivers/crypto/caam/ctrl.c | |||
@@ -269,7 +269,7 @@ static int deinstantiate_rng(struct device *ctrldev, int state_handle_mask) | |||
269 | /* | 269 | /* |
270 | * If the corresponding bit is set, then it means the state | 270 | * If the corresponding bit is set, then it means the state |
271 | * handle was initialized by us, and thus it needs to be | 271 | * handle was initialized by us, and thus it needs to be |
272 | * deintialized as well | 272 | * deinitialized as well |
273 | */ | 273 | */ |
274 | if ((1 << sh_idx) & state_handle_mask) { | 274 | if ((1 << sh_idx) & state_handle_mask) { |
275 | /* | 275 | /* |
diff --git a/drivers/net/wireless/rsi/rsi_91x_usb.c b/drivers/net/wireless/rsi/rsi_91x_usb.c index ef5d394f185b..cc8deecea8cb 100644 --- a/drivers/net/wireless/rsi/rsi_91x_usb.c +++ b/drivers/net/wireless/rsi/rsi_91x_usb.c | |||
@@ -516,7 +516,7 @@ err: | |||
516 | 516 | ||
517 | /** | 517 | /** |
518 | * rsi_disconnect() - This function performs the reverse of the probe function, | 518 | * rsi_disconnect() - This function performs the reverse of the probe function, |
519 | * it deintialize the driver structure. | 519 | * it deinitialize the driver structure. |
520 | * @pfunction: Pointer to the USB interface structure. | 520 | * @pfunction: Pointer to the USB interface structure. |
521 | * | 521 | * |
522 | * Return: None. | 522 | * Return: None. |
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index 9ab43935869e..2eebc6215cac 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) | |||
213 | vif = netdev_priv(dev); | 213 | vif = netdev_priv(dev); |
214 | wilc = vif->wilc; | 214 | wilc = vif->wilc; |
215 | 215 | ||
216 | /* Deintialize IRQ */ | 216 | /* Deinitialize IRQ */ |
217 | if (wilc->dev_irq_num) { | 217 | if (wilc->dev_irq_num) { |
218 | free_irq(wilc->dev_irq_num, wilc); | 218 | free_irq(wilc->dev_irq_num, wilc); |
219 | gpio_free(wilc->gpio); | 219 | gpio_free(wilc->gpio); |
diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index f7ce47cac2aa..7961d1c56847 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | |||
@@ -2357,7 +2357,7 @@ int wilc_deinit_host_int(struct net_device *net) | |||
2357 | del_timer_sync(&wilc_during_ip_timer); | 2357 | del_timer_sync(&wilc_during_ip_timer); |
2358 | 2358 | ||
2359 | if (s32Error) | 2359 | if (s32Error) |
2360 | netdev_err(net, "Error while deintializing host interface\n"); | 2360 | netdev_err(net, "Error while deinitializing host interface\n"); |
2361 | 2361 | ||
2362 | return s32Error; | 2362 | return s32Error; |
2363 | } | 2363 | } |
diff --git a/scripts/spelling.txt b/scripts/spelling.txt index 6b627d850864..ea01f005cf38 100644 --- a/scripts/spelling.txt +++ b/scripts/spelling.txt | |||
@@ -322,6 +322,9 @@ defintion||definition | |||
322 | defintions||definitions | 322 | defintions||definitions |
323 | defualt||default | 323 | defualt||default |
324 | defult||default | 324 | defult||default |
325 | deintializing||deinitializing | ||
326 | deintialize||deinitialize | ||
327 | deintialized||deinitialized | ||
325 | deivce||device | 328 | deivce||device |
326 | delared||declared | 329 | delared||declared |
327 | delare||declare | 330 | delare||declare |
diff --git a/sound/soc/amd/acp-pcm-dma.c b/sound/soc/amd/acp-pcm-dma.c index 818b052377f3..ec1067a679da 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) | |||
506 | return 0; | 506 | return 0; |
507 | } | 507 | } |
508 | 508 | ||
509 | /* Deintialize ACP */ | 509 | /* Deinitialize ACP */ |
510 | static int acp_deinit(void __iomem *acp_mmio) | 510 | static int acp_deinit(void __iomem *acp_mmio) |
511 | { | 511 | { |
512 | u32 val; | 512 | u32 val; |