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

treewide: Fix typos in printk

This patch fix spelling typos found in printk
within various part of the kernel sources.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Masanari Iida and committed by
Jiri Kosina
c19ca6cb 9938b044

+14 -14
+1 -1
arch/x86/kernel/cpu/microcode/intel.c
··· 422 422 data_size = get_datasize(mc_saved_header); 423 423 date = mc_saved_header->date; 424 424 425 - pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, toal size=0x%x, date = %04x-%02x-%02x\n", 425 + pr_debug("mc_saved[%d]: sig=0x%x, pf=0x%x, rev=0x%x, total size=0x%x, date = %04x-%02x-%02x\n", 426 426 i, sig, pf, rev, total_size, 427 427 date & 0xffff, 428 428 date >> 24,
+1 -1
arch/x86/kvm/iommu.c
··· 254 254 !iommu_capable(&pci_bus_type, IOMMU_CAP_INTR_REMAP)) { 255 255 printk(KERN_WARNING "%s: No interrupt remapping support," 256 256 " disallowing device assignment." 257 - " Re-enble with \"allow_unsafe_assigned_interrupts=1\"" 257 + " Re-enable with \"allow_unsafe_assigned_interrupts=1\"" 258 258 " module option.\n", __func__); 259 259 iommu_domain_free(kvm->arch.iommu_domain); 260 260 kvm->arch.iommu_domain = NULL;
+2 -2
block/partitions/efi.c
··· 430 430 } 431 431 /* Check that sizeof_partition_entry has the correct value */ 432 432 if (le32_to_cpu((*gpt)->sizeof_partition_entry) != sizeof(gpt_entry)) { 433 - pr_debug("GUID Partitition Entry Size check failed.\n"); 433 + pr_debug("GUID Partition Entry Size check failed.\n"); 434 434 goto fail; 435 435 } 436 436 ··· 443 443 le32_to_cpu((*gpt)->sizeof_partition_entry)); 444 444 445 445 if (crc != le32_to_cpu((*gpt)->partition_entry_array_crc32)) { 446 - pr_debug("GUID Partitition Entry Array CRC check failed.\n"); 446 + pr_debug("GUID Partition Entry Array CRC check failed.\n"); 447 447 goto fail_ptes; 448 448 } 449 449
+1 -1
drivers/edac/amd64_edac.c
··· 645 645 input_addr = 646 646 dram_addr_to_input_addr(mci, sys_addr_to_dram_addr(mci, sys_addr)); 647 647 648 - edac_dbg(2, "SysAdddr 0x%lx translates to InputAddr 0x%lx\n", 648 + edac_dbg(2, "SysAddr 0x%lx translates to InputAddr 0x%lx\n", 649 649 (unsigned long)sys_addr, (unsigned long)input_addr); 650 650 651 651 return input_addr;
+1 -1
drivers/mtd/sm_ftl.c
··· 386 386 if (test_bit(boffset / SM_SECTOR_SIZE, &invalid_bitmap)) { 387 387 388 388 sm_printk("sector %d of block at LBA %d of zone %d" 389 - " coudn't be read, marking it as invalid", 389 + " couldn't be read, marking it as invalid", 390 390 boffset / SM_SECTOR_SIZE, lba, zone); 391 391 392 392 oob.data_status = 0;
+1 -1
drivers/net/ethernet/mellanox/mlx5/core/sriov.c
··· 140 140 struct mlx5_core_sriov *sriov = &dev->priv.sriov; 141 141 int err; 142 142 143 - mlx5_core_dbg(dev, "requsted num_vfs %d\n", num_vfs); 143 + mlx5_core_dbg(dev, "requested num_vfs %d\n", num_vfs); 144 144 if (!mlx5_core_is_pf(dev)) 145 145 return -EPERM; 146 146
+2 -2
drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
··· 2315 2315 2316 2316 pci_read_config_byte(rtlpci->pdev, 0x34, &cap_pointer); 2317 2317 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, 2318 - "PCI configration 0x34 = 0x%2x\n", cap_pointer); 2318 + "PCI configuration 0x34 = 0x%2x\n", cap_pointer); 2319 2319 2320 2320 do { 2321 2321 pci_read_config_word(rtlpci->pdev, cap_pointer, &cap_hdr); 2322 2322 cap_id = cap_hdr & 0xFF; 2323 2323 2324 2324 RT_TRACE(rtlpriv, COMP_INIT, DBG_LOUD, 2325 - "in pci configration, cap_pointer%x = %x\n", 2325 + "in pci configuration, cap_pointer%x = %x\n", 2326 2326 cap_pointer, cap_id); 2327 2327 2328 2328 if (cap_id == 0x01) {
+1 -1
drivers/scsi/aic94xx/aic94xx_hwi.c
··· 477 477 478 478 err = asd_start_seqs(asd_ha); 479 479 if (err) { 480 - asd_printk("coudln't start seqs for %s\n", 480 + asd_printk("couldn't start seqs for %s\n", 481 481 pci_name(asd_ha->pcidev)); 482 482 goto out; 483 483 }
+1 -1
drivers/scsi/aic94xx/aic94xx_seq.c
··· 1352 1352 for_each_sequencer(lseq_mask, lseq_mask, lseq) { 1353 1353 err = asd_seq_start_lseq(asd_ha, lseq); 1354 1354 if (err) { 1355 - asd_printk("coudln't start LSEQ %d for %s\n", lseq, 1355 + asd_printk("couldn't start LSEQ %d for %s\n", lseq, 1356 1356 pci_name(asd_ha->pcidev)); 1357 1357 return err; 1358 1358 }
+1 -1
drivers/scsi/isci/port.c
··· 794 794 * case stay in the stopped state. 795 795 */ 796 796 dev_err(sciport_to_dev(iport), 797 - "%s: SCIC Port 0x%p failed to stop before tiemout.\n", 797 + "%s: SCIC Port 0x%p failed to stop before timeout.\n", 798 798 __func__, 799 799 iport); 800 800 } else if (current_state == SCI_PORT_STOPPING) {
+1 -1
fs/exofs/super.c
··· 122 122 if (match_int(&args[0], &option)) 123 123 return -EINVAL; 124 124 if (option <= 0) { 125 - EXOFS_ERR("Timout must be > 0"); 125 + EXOFS_ERR("Timeout must be > 0"); 126 126 return -EINVAL; 127 127 } 128 128 opts->timeout = option * HZ;
+1 -1
net/tipc/socket.c
··· 366 366 sock->state = state; 367 367 sock_init_data(sock, sk); 368 368 if (tipc_sk_insert(tsk)) { 369 - pr_warn("Socket create failed; port numbrer exhausted\n"); 369 + pr_warn("Socket create failed; port number exhausted\n"); 370 370 return -EINVAL; 371 371 } 372 372 msg_set_origport(msg, tsk->portid);