Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8faaaead authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: fix comments and printk msgs



This patch fixed several typo in printk from various
part of kernel source.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 97e81acd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ struct opal_sg_list {

struct validate_flash_t {
	int		status;		/* Return status */
	void		*buf;		/* Candiate image buffer */
	void		*buf;		/* Candidate image buffer */
	uint32_t	buf_size;	/* Image size */
	uint32_t	result;		/* Update results token */
};
@@ -500,7 +500,7 @@ static int alloc_image_buf(char *buffer, size_t count)

	memcpy(&image_header, (void *)buffer, sizeof(struct image_header_t));
	image_data.size = be32_to_cpu(image_header.size);
	pr_debug("FLASH: Candiate image size = %u\n", image_data.size);
	pr_debug("FLASH: Candidate image size = %u\n", image_data.size);

	if (image_data.size > MAX_IMAGE_SIZE) {
		pr_warn("FLASH: Too large image\n");
+1 −1
Original line number Diff line number Diff line
@@ -801,7 +801,7 @@ static int stu300_xfer_msg(struct i2c_adapter *adap,
	/* Check that the bus is free, or wait until some timeout occurs */
	ret = stu300_wait_while_busy(dev);
	if (ret != 0) {
		dev_err(&dev->pdev->dev, "timout waiting for transfer "
		dev_err(&dev->pdev->dev, "timeout waiting for transfer "
		       "to commence.\n");
		goto exit_disable;
	}
+1 −1
Original line number Diff line number Diff line
@@ -396,7 +396,7 @@ static int fsa9480_irq_init(struct fsa9480_usbsw *usbsw)
				IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
				"fsa9480 micro USB", usbsw);
		if (ret) {
			dev_err(&client->dev, "failed to reqeust IRQ\n");
			dev_err(&client->dev, "failed to request IRQ\n");
			return ret;
		}

+1 −1
Original line number Diff line number Diff line
@@ -428,7 +428,7 @@ static void mei_nfc_init(struct work_struct *work)
	mutex_unlock(&dev->device_lock);

	if (mei_nfc_if_version(ndev) < 0) {
		dev_err(&dev->pdev->dev, "Could not get the NFC interfave version");
		dev_err(&dev->pdev->dev, "Could not get the NFC interface version");

		goto err;
	}
+1 −1
Original line number Diff line number Diff line
@@ -2126,7 +2126,7 @@ static void lmc_driver_timeout(struct net_device *dev)

    spin_unlock_irqrestore(&sc->lmc_lock, flags);

    lmc_trace(dev, "lmc_driver_timout out");
    lmc_trace(dev, "lmc_driver_timeout out");


}
Loading