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 multiple spelling typos found in
various part of kernel.

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
e3d132d1 20d5a865

+13 -13
+1 -1
drivers/firmware/efi/libstub/fdt.c
··· 253 253 sys_table->boottime->free_pool(memory_map); 254 254 new_fdt_size += EFI_PAGE_SIZE; 255 255 } else { 256 - pr_efi_err(sys_table, "Unable to constuct new device tree.\n"); 256 + pr_efi_err(sys_table, "Unable to construct new device tree.\n"); 257 257 goto fail_free_mmap; 258 258 } 259 259 }
+1 -1
drivers/infiniband/hw/cxgb4/cm.c
··· 449 449 { 450 450 struct c4iw_ep *ep = handle; 451 451 452 - printk(KERN_ERR MOD "ARP failure duing connect\n"); 452 + printk(KERN_ERR MOD "ARP failure during connect\n"); 453 453 kfree_skb(skb); 454 454 connect_reply_upcall(ep, -EHOSTUNREACH); 455 455 state_set(&ep->com, DEAD);
+2 -2
drivers/md/raid0.c
··· 549 549 * - all mirrors must be already degraded 550 550 */ 551 551 if (mddev->layout != ((1 << 8) + 2)) { 552 - printk(KERN_ERR "md/raid0:%s:: Raid0 cannot takover layout: 0x%x\n", 552 + printk(KERN_ERR "md/raid0:%s:: Raid0 cannot takeover layout: 0x%x\n", 553 553 mdname(mddev), 554 554 mddev->layout); 555 555 return ERR_PTR(-EINVAL); 556 556 } 557 557 if (mddev->raid_disks & 1) { 558 - printk(KERN_ERR "md/raid0:%s: Raid0 cannot takover Raid10 with odd disk number.\n", 558 + printk(KERN_ERR "md/raid0:%s: Raid0 cannot takeover Raid10 with odd disk number.\n", 559 559 mdname(mddev)); 560 560 return ERR_PTR(-EINVAL); 561 561 }
+1 -1
drivers/media/common/saa7146/saa7146_video.c
··· 502 502 /* check if overlay is running */ 503 503 if (IS_OVERLAY_ACTIVE(fh) != 0) { 504 504 if (vv->video_fh != fh) { 505 - DEB_D("refusing to change framebuffer informations while overlay is active in another open\n"); 505 + DEB_D("refusing to change framebuffer information while overlay is active in another open\n"); 506 506 return -EBUSY; 507 507 } 508 508 }
+1 -1
drivers/media/dvb-frontends/m88ds3103.c
··· 685 685 /* request the firmware, this will block and timeout */ 686 686 ret = request_firmware(&fw, fw_file, &client->dev); 687 687 if (ret) { 688 - dev_err(&client->dev, "firmare file '%s' not found\n", fw_file); 688 + dev_err(&client->dev, "firmware file '%s' not found\n", fw_file); 689 689 goto err; 690 690 } 691 691
+2 -2
drivers/media/dvb-frontends/si2165.c
··· 511 511 &offset, block_count); 512 512 if (ret < 0) { 513 513 dev_err(&state->i2c->dev, 514 - "%s: firmare could not be uploaded\n", 514 + "%s: firmware could not be uploaded\n", 515 515 KBUILD_MODNAME); 516 516 goto error; 517 517 } ··· 535 535 536 536 if (len != offset) { 537 537 dev_err(&state->i2c->dev, 538 - "%s: firmare len mismatch %04x != %04x\n", 538 + "%s: firmware len mismatch %04x != %04x\n", 539 539 KBUILD_MODNAME, len, offset); 540 540 ret = -EINVAL; 541 541 goto error;
+1 -1
drivers/media/pci/netup_unidvb/netup_unidvb_core.c
··· 388 388 vb2_dvb_alloc_frontend( 389 389 &ndev->frontends[num], 3) == NULL) { 390 390 dev_dbg(&ndev->pci_dev->dev, 391 - "%s(): unable to to alllocate vb2_dvb_frontend\n", 391 + "%s(): unable to allocate vb2_dvb_frontend\n", 392 392 __func__); 393 393 return -ENOMEM; 394 394 }
+1 -1
drivers/net/ethernet/intel/i40evf/i40evf_main.c
··· 1229 1229 1230 1230 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) { 1231 1231 /* bail because we already have a command pending */ 1232 - dev_err(&adapter->pdev->dev, "Cannot confiure RSS, command %d pending\n", 1232 + dev_err(&adapter->pdev->dev, "Cannot configure RSS, command %d pending\n", 1233 1233 adapter->current_op); 1234 1234 return; 1235 1235 }
+1 -1
drivers/soc/ti/knav_dma.c
··· 389 389 *dma_instance = dma_node->name; 390 390 index = of_property_match_string(np, "ti,navigator-dma-names", name); 391 391 if (index < 0) { 392 - dev_err(kdev->dev, "No 'ti,navigator-dma-names' propery\n"); 392 + dev_err(kdev->dev, "No 'ti,navigator-dma-names' property\n"); 393 393 return -ENODEV; 394 394 } 395 395
+1 -1
sound/drivers/pcm-indirect2.c
··· 47 47 int seconds = (rec->lastbytetime - rec->firstbytetime) / HZ; 48 48 49 49 snd_printk(KERN_DEBUG "STAT: mul_elapsed: %u, mul_elapsed_real: %d, " 50 - "irq_occured: %d\n", 50 + "irq_occurred: %d\n", 51 51 rec->mul_elapsed, rec->mul_elapsed_real, rec->irq_occured); 52 52 snd_printk(KERN_DEBUG "STAT: min_multiple: %d (irqs/period)\n", 53 53 rec->min_multiple);
+1 -1
sound/usb/6fire/firmware.c
··· 350 350 if (!memcmp(version, known_fw_versions + i, 2)) 351 351 return 0; 352 352 353 - dev_err(&intf->dev, "invalid fimware version in device: %4ph. " 353 + dev_err(&intf->dev, "invalid firmware version in device: %4ph. " 354 354 "please reconnect to power. if this failure " 355 355 "still happens, check your firmware installation.", 356 356 version);