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

scripts/spelling.txt: add "partiton" pattern and fix typo instances

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

partiton||partition

Link: http://lkml.kernel.org/r/1481573103-11329-7-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
8ab102d6 0f5e1558

+13 -13
+1 -1
arch/arm/include/asm/mach/flash.h
··· 22 22 * set_vpp: method called to enable or disable VPP 23 23 * mmcontrol: method called to enable or disable Sync. Burst Read in OneNAND 24 24 * parts: optional array of mtd_partitions for static partitioning 25 - * nr_parts: number of mtd_partitions for static partitoning 25 + * nr_parts: number of mtd_partitions for static partitioning 26 26 */ 27 27 struct flash_platform_data { 28 28 const char *map_name;
+1 -1
arch/ia64/sn/kernel/sn2/sn_hwperf.c
··· 525 525 /* both ends local to this partition */ 526 526 seq_puts(s, " local"); 527 527 else if (SN_HWPERF_FOREIGN(p)) 528 - /* both ends of the link in foreign partiton */ 528 + /* both ends of the link in foreign partition */ 529 529 seq_puts(s, " foreign"); 530 530 else 531 531 /* link straddles a partition */
+1 -1
arch/powerpc/boot/dts/fsl/mpc8569mds.dts
··· 55 55 label = "kernel"; 56 56 reg = <0x01c00000 0x002e0000>; 57 57 }; 58 - partiton@1ee0000 { 58 + partition@1ee0000 { 59 59 label = "dtb"; 60 60 reg = <0x01ee0000 0x00020000>; 61 61 };
+1 -1
arch/powerpc/include/asm/book3s/64/mmu.h
··· 30 30 31 31 #ifndef __ASSEMBLY__ 32 32 /* 33 - * ISA 3.0 partiton and process table entry format 33 + * ISA 3.0 partition and process table entry format 34 34 */ 35 35 struct prtb_entry { 36 36 __be64 prtb0;
+1 -1
arch/powerpc/include/asm/fsl_hcalls.h
··· 109 109 #define FH_DTPROP_MAX_PROPLEN 32768 110 110 111 111 /** 112 - * fh_partiton_get_dtprop - get a property from a guest device tree. 112 + * fh_partition_get_dtprop - get a property from a guest device tree. 113 113 * @handle: handle of partition whose device tree is to be accessed 114 114 * @dtpath_addr: physical address of device tree path to access 115 115 * @propname_addr: physical address of name of property
+1 -1
arch/powerpc/platforms/pseries/iommu.c
··· 1020 1020 /* check largest block * page size > max memory hotplug addr */ 1021 1021 max_addr = memory_hotplug_max(); 1022 1022 if (query.largest_available_block < (max_addr >> page_shift)) { 1023 - dev_dbg(&dev->dev, "can't map partiton max 0x%llx with %u " 1023 + dev_dbg(&dev->dev, "can't map partition max 0x%llx with %u " 1024 1024 "%llu-sized pages\n", max_addr, query.largest_available_block, 1025 1025 1ULL << page_shift); 1026 1026 goto out_failed;
+1 -1
arch/sparc/kernel/visemul.c
··· 30 30 /* 001001011 - two 32-bit merges */ 31 31 #define FPMERGE_OPF 0x04b 32 32 33 - /* 000110001 - 8-by-16-bit partitoned product */ 33 + /* 000110001 - 8-by-16-bit partitioned product */ 34 34 #define FMUL8x16_OPF 0x031 35 35 36 36 /* 000110011 - 8-by-16-bit upper alpha partitioned product */
+1 -1
drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
··· 178 178 0x3540, /* Device state, DRV_REG1 */ 179 179 0x3544, /* Driver state, DRV_REG2 */ 180 180 0x3548, /* Driver scratch, DRV_REG3 */ 181 - 0x354C, /* Device partiton info, DRV_REG4 */ 181 + 0x354C, /* Device partition info, DRV_REG4 */ 182 182 0x3524, /* Driver IDC ver, DRV_REG5 */ 183 183 0x3550, /* FW_VER_MAJOR */ 184 184 0x3554, /* FW_VER_MINOR */
+3 -3
drivers/watchdog/bcm2835_wdt.c
··· 36 36 #define PM_RSTC_RESET 0x00000102 37 37 38 38 /* 39 - * The Raspberry Pi firmware uses the RSTS register to know which partiton 40 - * to boot from. The partiton value is spread into bits 0, 2, 4, 6, 8, 10. 41 - * Partiton 63 is a special partition used by the firmware to indicate halt. 39 + * The Raspberry Pi firmware uses the RSTS register to know which partition 40 + * to boot from. The partition value is spread into bits 0, 2, 4, 6, 8, 10. 41 + * Partition 63 is a special partition used by the firmware to indicate halt. 42 42 */ 43 43 #define PM_RSTS_RASPBERRYPI_HALT 0x555 44 44
+1 -1
include/linux/mtd/qinfo.h
··· 14 14 * @DevId - Chip Device ID 15 15 * @qinfo - pointer to qinfo records describing the chip 16 16 * @numchips - number of chips including virual RWW partitions 17 - * @chipshift - Chip/partiton size 2^chipshift 17 + * @chipshift - Chip/partition size 2^chipshift 18 18 * @chips - per-chip data structure 19 19 */ 20 20 struct lpddr_private {
+1 -1
include/linux/spi/flash.h
··· 7 7 * struct flash_platform_data: board-specific flash data 8 8 * @name: optional flash device name (eg, as used with mtdparts=) 9 9 * @parts: optional array of mtd_partitions for static partitioning 10 - * @nr_parts: number of mtd_partitions for static partitoning 10 + * @nr_parts: number of mtd_partitions for static partitioning 11 11 * @type: optional flash device type (e.g. m25p80 vs m25p64), for use 12 12 * with chips that can't be queried for JEDEC or other IDs 13 13 *