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

treewide: Fix typo in printk

This patch fix spelling typo inv various part of sources.

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

authored by

Masanari Iida and committed by
Jiri Kosina
971bd8fa 74d33293

+10 -10
+1 -1
arch/powerpc/sysdev/fsl_pci.c
··· 1113 1113 IRQF_SHARED, 1114 1114 "[PCI] PME", hose); 1115 1115 if (res < 0) { 1116 - dev_err(&dev->dev, "Unable to requiest irq %d for PME\n", pme_irq); 1116 + dev_err(&dev->dev, "Unable to request irq %d for PME\n", pme_irq); 1117 1117 irq_dispose_mapping(pme_irq); 1118 1118 1119 1119 return -ENODEV;
+1 -1
drivers/crypto/img-hash.c
··· 334 334 335 335 hdev->dma_lch = dma_request_slave_channel(hdev->dev, "tx"); 336 336 if (!hdev->dma_lch) { 337 - dev_err(hdev->dev, "Couldn't aquire a slave DMA channel.\n"); 337 + dev_err(hdev->dev, "Couldn't acquire a slave DMA channel.\n"); 338 338 return -EBUSY; 339 339 } 340 340 dma_conf.direction = DMA_MEM_TO_DEV;
+2 -2
drivers/input/touchscreen/ili210x.c
··· 216 216 /* get panel info */ 217 217 error = ili210x_read_reg(client, REG_PANEL_INFO, &panel, sizeof(panel)); 218 218 if (error) { 219 - dev_err(dev, "Failed to get panel informations, err: %d\n", 219 + dev_err(dev, "Failed to get panel information, err: %d\n", 220 220 error); 221 221 return error; 222 222 } ··· 276 276 277 277 error = input_register_device(priv->input); 278 278 if (error) { 279 - dev_err(dev, "Cannot regiser input device, err: %d\n", error); 279 + dev_err(dev, "Cannot register input device, err: %d\n", error); 280 280 goto err_remove_sysfs; 281 281 } 282 282
+1 -1
drivers/isdn/mISDN/dsp_cmx.c
··· 506 506 __func__, conf->id); 507 507 508 508 if (list_empty(&conf->mlist)) { 509 - printk(KERN_ERR "%s: conference whithout members\n", 509 + printk(KERN_ERR "%s: conference without members\n", 510 510 __func__); 511 511 return; 512 512 }
+1 -1
drivers/mailbox/arm_mhu.c
··· 96 96 IRQF_SHARED, "mhu_link", chan); 97 97 if (ret) { 98 98 dev_err(chan->mbox->dev, 99 - "Unable to aquire IRQ %d\n", mlink->irq); 99 + "Unable to acquire IRQ %d\n", mlink->irq); 100 100 return ret; 101 101 } 102 102
+1 -1
drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
··· 1734 1734 1735 1735 mfc_debug(1, "New context: %d\n", new_ctx); 1736 1736 ctx = dev->ctx[new_ctx]; 1737 - mfc_debug(1, "Seting new context to %p\n", ctx); 1737 + mfc_debug(1, "Setting new context to %p\n", ctx); 1738 1738 /* Got context to run in ctx */ 1739 1739 mfc_debug(1, "ctx->dst_queue_cnt=%d ctx->dpb_count=%d ctx->src_queue_cnt=%d\n", 1740 1740 ctx->dst_queue_cnt, ctx->pb_count, ctx->src_queue_cnt);
+1 -1
drivers/regulator/max77843.c
··· 162 162 &max77843_supported_regulators[i], &config); 163 163 if (IS_ERR(regulator)) { 164 164 dev_err(&pdev->dev, 165 - "Failed to regiser regulator-%d\n", i); 165 + "Failed to register regulator-%d\n", i); 166 166 return PTR_ERR(regulator); 167 167 } 168 168 }
+1 -1
drivers/usb/dwc2/core.c
··· 3175 3175 hw->hs_phy_type); 3176 3176 dev_dbg(hsotg->dev, " fs_phy_type=%d\n", 3177 3177 hw->fs_phy_type); 3178 - dev_dbg(hsotg->dev, " utmi_phy_data_wdith=%d\n", 3178 + dev_dbg(hsotg->dev, " utmi_phy_data_width=%d\n", 3179 3179 hw->utmi_phy_data_width); 3180 3180 dev_dbg(hsotg->dev, " num_dev_ep=%d\n", 3181 3181 hw->num_dev_ep);
+1 -1
fs/ecryptfs/mmap.c
··· 299 299 rc = ecryptfs_read_lower_page_segment( 300 300 page, index, 0, PAGE_CACHE_SIZE, mapping->host); 301 301 if (rc) { 302 - printk(KERN_ERR "%s: Error attemping to read " 302 + printk(KERN_ERR "%s: Error attempting to read " 303 303 "lower page segment; rc = [%d]\n", 304 304 __func__, rc); 305 305 ClearPageUptodate(page);