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

Configure Feed

Select the types of activity you want to include in your feed.

scripts/spelling.txt: add "disble(d)" pattern and fix typo instances

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

disble||disable
disbled||disabled

I kept the TSL2563_INT_DISBLED in /drivers/iio/light/tsl2563.c
untouched. The macro is not referenced at all, but this commit is
touching only comment blocks just in case.

Link: http://lkml.kernel.org/r/1481573103-11329-20-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
8a1115ff 6bbc4a41

+19 -18
+1 -1
Documentation/dev-tools/kcov.rst
··· 10 10 to collect more or less stable coverage that is function of syscall inputs. 11 11 To achieve this goal it does not collect coverage in soft/hard interrupts 12 12 and instrumentation of some inherently non-deterministic parts of kernel is 13 - disbled (e.g. scheduler, locking). 13 + disabled (e.g. scheduler, locking). 14 14 15 15 Usage 16 16 -----
+1 -1
arch/cris/arch-v32/drivers/cryptocop.c
··· 2086 2086 dma_in_cfg.en = regk_dma_no; 2087 2087 REG_WR(dma, IN_DMA_INST, rw_cfg, dma_in_cfg); 2088 2088 2089 - /* Disble the cryptocop. */ 2089 + /* Disable the cryptocop. */ 2090 2090 rw_cfg = REG_RD(strcop, regi_strcop, rw_cfg); 2091 2091 rw_cfg.en = 0; 2092 2092 REG_WR(strcop, regi_strcop, rw_cfg, rw_cfg);
+1 -1
arch/x86/kernel/ftrace.c
··· 535 535 { 536 536 int enable_irqs = irqs_disabled(); 537 537 538 - /* We may be called with interrupts disbled (on bootup). */ 538 + /* We may be called with interrupts disabled (on bootup). */ 539 539 if (enable_irqs) 540 540 local_irq_enable(); 541 541 on_each_cpu(do_sync_core, NULL, 1);
+1 -1
drivers/crypto/ux500/cryp/cryp.c
··· 82 82 void cryp_flush_inoutfifo(struct cryp_device_data *device_data) 83 83 { 84 84 /* 85 - * We always need to disble the hardware before trying to flush the 85 + * We always need to disable the hardware before trying to flush the 86 86 * FIFO. This is something that isn't written in the design 87 87 * specification, but we have been informed by the hardware designers 88 88 * that this must be done.
+1 -1
drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c
··· 788 788 } 789 789 } 790 790 791 - /* disble sdma engine before programing it */ 791 + /* disable sdma engine before programing it */ 792 792 sdma_v3_0_ctx_switch_enable(adev, false); 793 793 sdma_v3_0_enable(adev, false); 794 794
+1 -1
drivers/hv/channel.c
··· 543 543 /* 544 544 * In case a device driver's probe() fails (e.g., 545 545 * util_probe() -> vmbus_open() returns -ENOMEM) and the device is 546 - * rescinded later (e.g., we dynamically disble an Integrated Service 546 + * rescinded later (e.g., we dynamically disable an Integrated Service 547 547 * in Hyper-V Manager), the driver's remove() invokes vmbus_close(): 548 548 * here we should skip most of the below cleanup work. 549 549 */
+1 -1
drivers/isdn/hisax/st5481_b.c
··· 239 239 } 240 240 } 241 241 } else { 242 - // Disble B channel interrupts 242 + // Disable B channel interrupts 243 243 st5481_usb_device_ctrl_msg(adapter, FFMSK_B1+(bcs->channel * 2), 0, NULL, NULL); 244 244 245 245 // Disable B channel FIFOs
+1 -1
drivers/mtd/spi-nor/spi-nor.c
··· 186 186 } 187 187 188 188 /* 189 - * Send write disble instruction to the chip. 189 + * Send write disable instruction to the chip. 190 190 */ 191 191 static inline int write_disable(struct spi_nor *nor) 192 192 {
+1 -1
drivers/net/ethernet/qlogic/qlge/qlge.h
··· 1163 1163 u8 opcode; /* 0x20 */ 1164 1164 u8 flags1; 1165 1165 #define IB_MAC_IOCB_RSP_OI 0x01 /* Overide intr delay */ 1166 - #define IB_MAC_IOCB_RSP_I 0x02 /* Disble Intr Generation */ 1166 + #define IB_MAC_IOCB_RSP_I 0x02 /* Disable Intr Generation */ 1167 1167 #define IB_MAC_CSUM_ERR_MASK 0x1c /* A mask to use for csum errs */ 1168 1168 #define IB_MAC_IOCB_RSP_TE 0x04 /* Checksum error */ 1169 1169 #define IB_MAC_IOCB_RSP_NU 0x08 /* No checksum rcvd */
+1 -1
drivers/scsi/aic7xxx/aic79xx_core.c
··· 6278 6278 * does not disable its parity logic prior to 6279 6279 * the start of the reset. This may cause a 6280 6280 * parity error to be detected and thus a 6281 - * spurious SERR or PERR assertion. Disble 6281 + * spurious SERR or PERR assertion. Disable 6282 6282 * PERR and SERR responses during the CHIPRST. 6283 6283 */ 6284 6284 mod_cmd = cmd & ~(PCIM_CMD_PERRESPEN|PCIM_CMD_SERRESPEN);
+1 -2
drivers/usb/gadget/legacy/inode.c
··· 84 84 85 85 /* /dev/gadget/$CHIP represents ep0 and the whole device */ 86 86 enum ep0_state { 87 - /* DISBLED is the initial state. 88 - */ 87 + /* DISABLED is the initial state. */ 89 88 STATE_DEV_DISABLED = 0, 90 89 91 90 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
+2 -2
drivers/usb/host/xhci.c
··· 868 868 869 869 spin_lock_irqsave(&xhci->lock, flags); 870 870 871 - /* disble usb3 ports Wake bits*/ 871 + /* disable usb3 ports Wake bits */ 872 872 port_index = xhci->num_usb3_ports; 873 873 port_array = xhci->usb3_ports; 874 874 while (port_index--) { ··· 879 879 writel(t2, port_array[port_index]); 880 880 } 881 881 882 - /* disble usb2 ports Wake bits*/ 882 + /* disable usb2 ports Wake bits */ 883 883 port_index = xhci->num_usb2_ports; 884 884 port_array = xhci->usb2_ports; 885 885 while (port_index--) {
+1 -1
include/linux/regulator/machine.h
··· 65 65 int uV; /* suspend voltage */ 66 66 unsigned int mode; /* suspend regulator operating mode */ 67 67 int enabled; /* is regulator enabled in this suspend state */ 68 - int disabled; /* is the regulator disbled in this suspend state */ 68 + int disabled; /* is the regulator disabled in this suspend state */ 69 69 }; 70 70 71 71 /**
+1 -1
kernel/cgroup/cgroup.c
··· 2669 2669 * 2670 2670 * Returns 0 on success, -errno on failure. On failure, csses which have 2671 2671 * been processed already aren't cleaned up. The caller is responsible for 2672 - * cleaning up with cgroup_apply_control_disble(). 2672 + * cleaning up with cgroup_apply_control_disable(). 2673 2673 */ 2674 2674 static int cgroup_apply_control_enable(struct cgroup *cgrp) 2675 2675 {
+1 -1
kernel/events/core.c
··· 998 998 */ 999 999 #define PERF_CPU_HRTIMER (1000 / HZ) 1000 1000 /* 1001 - * function must be called with interrupts disbled 1001 + * function must be called with interrupts disabled 1002 1002 */ 1003 1003 static enum hrtimer_restart perf_mux_hrtimer_handler(struct hrtimer *hr) 1004 1004 {
+2
scripts/spelling.txt
··· 372 372 disapear||disappear 373 373 disapeared||disappeared 374 374 disappared||disappeared 375 + disble||disable 376 + disbled||disabled 375 377 disconnet||disconnect 376 378 discontinous||discontinuous 377 379 dispertion||dispersion
+1 -1
sound/soc/amd/acp-pcm-dma.c
··· 89 89 writel(val, acp_mmio + (reg * 4)); 90 90 } 91 91 92 - /* Configure a given dma channel parameters - enable/disble, 92 + /* Configure a given dma channel parameters - enable/disable, 93 93 * number of descriptors, priority 94 94 */ 95 95 static void config_acp_dma_channel(void __iomem *acp_mmio, u8 ch_num,