Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masahiro Yamada and committed by
Linus Torvalds
1cce2000 66f00449

+8 -5
+1 -1
drivers/crypto/caam/ctrl.c
··· 269 269 /* 270 270 * If the corresponding bit is set, then it means the state 271 271 * handle was initialized by us, and thus it needs to be 272 - * deintialized as well 272 + * deinitialized as well 273 273 */ 274 274 if ((1 << sh_idx) & state_handle_mask) { 275 275 /*
+1 -1
drivers/net/wireless/rsi/rsi_91x_usb.c
··· 516 516 517 517 /** 518 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 520 * @pfunction: Pointer to the USB interface structure. 521 521 * 522 522 * Return: None.
+1 -1
drivers/staging/wilc1000/linux_wlan.c
··· 213 213 vif = netdev_priv(dev); 214 214 wilc = vif->wilc; 215 215 216 - /* Deintialize IRQ */ 216 + /* Deinitialize IRQ */ 217 217 if (wilc->dev_irq_num) { 218 218 free_irq(wilc->dev_irq_num, wilc); 219 219 gpio_free(wilc->gpio);
+1 -1
drivers/staging/wilc1000/wilc_wfi_cfgoperations.c
··· 2357 2357 del_timer_sync(&wilc_during_ip_timer); 2358 2358 2359 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 2362 return s32Error; 2363 2363 }
+3
scripts/spelling.txt
··· 322 322 defintions||definitions 323 323 defualt||default 324 324 defult||default 325 + deintializing||deinitializing 326 + deintialize||deinitialize 327 + deintialized||deinitialized 325 328 deivce||device 326 329 delared||declared 327 330 delare||declare
+1 -1
sound/soc/amd/acp-pcm-dma.c
··· 506 506 return 0; 507 507 } 508 508 509 - /* Deintialize ACP */ 509 + /* Deinitialize ACP */ 510 510 static int acp_deinit(void __iomem *acp_mmio) 511 511 { 512 512 u32 val;