Commit 971bd8fa authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: Fix typo in printk



This patch fix spelling typo inv various part of sources.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.com>
parent 74d33293
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1113,7 +1113,7 @@ static int fsl_pci_pme_probe(struct pci_controller *hose)
			IRQF_SHARED,
			"[PCI] PME", hose);
	if (res < 0) {
		dev_err(&dev->dev, "Unable to requiest irq %d for PME\n", pme_irq);
		dev_err(&dev->dev, "Unable to request irq %d for PME\n", pme_irq);
		irq_dispose_mapping(pme_irq);

		return -ENODEV;
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ static int img_hash_dma_init(struct img_hash_dev *hdev)

	hdev->dma_lch = dma_request_slave_channel(hdev->dev, "tx");
	if (!hdev->dma_lch) {
		dev_err(hdev->dev, "Couldn't aquire a slave DMA channel.\n");
		dev_err(hdev->dev, "Couldn't acquire a slave DMA channel.\n");
		return -EBUSY;
	}
	dma_conf.direction = DMA_MEM_TO_DEV;
+2 −2
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ static int ili210x_i2c_probe(struct i2c_client *client,
	/* get panel info */
	error = ili210x_read_reg(client, REG_PANEL_INFO, &panel, sizeof(panel));
	if (error) {
		dev_err(dev, "Failed to get panel informations, err: %d\n",
		dev_err(dev, "Failed to get panel information, err: %d\n",
			error);
		return error;
	}
@@ -276,7 +276,7 @@ static int ili210x_i2c_probe(struct i2c_client *client,

	error = input_register_device(priv->input);
	if (error) {
		dev_err(dev, "Cannot regiser input device, err: %d\n", error);
		dev_err(dev, "Cannot register input device, err: %d\n", error);
		goto err_remove_sysfs;
	}

+1 −1
Original line number Diff line number Diff line
@@ -506,7 +506,7 @@ dsp_cmx_hardware(struct dsp_conf *conf, struct dsp *dsp)
		       __func__, conf->id);

	if (list_empty(&conf->mlist)) {
		printk(KERN_ERR "%s: conference whithout members\n",
		printk(KERN_ERR "%s: conference without members\n",
		       __func__);
		return;
	}
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ static int mhu_startup(struct mbox_chan *chan)
			  IRQF_SHARED, "mhu_link", chan);
	if (ret) {
		dev_err(chan->mbox->dev,
			"Unable to aquire IRQ %d\n", mlink->irq);
			"Unable to acquire IRQ %d\n", mlink->irq);
		return ret;
	}

Loading