All of lore.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <rdunlap@infradead.org>
To: Masanari Iida <standby24x7@gmail.com>,
	linux-kernel@vger.kernel.org, trivial@kernel.org
Subject: Re: [PATCH] [trivial]treewide: Fix typo in printk
Date: Sat, 12 Oct 2013 16:04:28 -0700	[thread overview]
Message-ID: <5259D57C.6050208@infradead.org> (raw)
In-Reply-To: <1380550749-32272-1-git-send-email-standby24x7@gmail.com>

On 09/30/13 07:19, Masanari Iida wrote:
> Correct spelling typo within various part of the kernel
> 
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
>  drivers/acpi/acpica/utobject.c                      | 2 +-
>  drivers/media/i2c/adv7183.c                         | 2 +-
>  drivers/media/i2c/s5c73m3/s5c73m3-core.c            | 2 +-
>  drivers/mtd/nand/docg4.c                            | 2 +-
>  drivers/net/ethernet/mellanox/mlx4/fw.c             | 2 +-
>  drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c | 2 +-
>  drivers/net/wireless/ath/ath10k/pci.c               | 2 +-
>  drivers/regulator/tps65910-regulator.c              | 2 +-
>  drivers/scsi/mvsas/mv_sas.c                         | 2 +-
>  fs/btrfs/tests/free-space-tests.c                   | 4 ++--
>  10 files changed, 11 insertions(+), 11 deletions(-)
> 
> diff --git a/drivers/acpi/acpica/utobject.c b/drivers/acpi/acpica/utobject.c
> index aa61f66..2ae2b46 100644
> --- a/drivers/acpi/acpica/utobject.c
> +++ b/drivers/acpi/acpica/utobject.c
> @@ -356,7 +356,7 @@ u8 acpi_ut_valid_internal_object(void *object)
>  	default:
>  
>  		ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
> -				  "%p is not not an ACPI operand obj [%s]\n",
> +				  "%p is not an ACPI operand obj [%s]\n",
>  				  object, acpi_ut_get_descriptor_name(object)));
>  		break;
>  	}
> diff --git a/drivers/media/i2c/adv7183.c b/drivers/media/i2c/adv7183.c
> index 6f738d8..d45e0e3 100644
> --- a/drivers/media/i2c/adv7183.c
> +++ b/drivers/media/i2c/adv7183.c
> @@ -178,7 +178,7 @@ static int adv7183_log_status(struct v4l2_subdev *sd)
>  			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_1),
>  			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_2),
>  			adv7183_read(sd, ADV7183_VS_FIELD_CTRL_3));
> -	v4l2_info(sd, "adv7183: Hsync positon control 1 2 and 3 = 0x%02x 0x%02x 0x%02x\n",
> +	v4l2_info(sd, "adv7183: Hsync position control 1 2 and 3 = 0x%02x 0x%02x 0x%02x\n",
>  			adv7183_read(sd, ADV7183_HS_POS_CTRL_1),
>  			adv7183_read(sd, ADV7183_HS_POS_CTRL_2),
>  			adv7183_read(sd, ADV7183_HS_POS_CTRL_3));
> diff --git a/drivers/media/i2c/s5c73m3/s5c73m3-core.c b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
> index b76ec0e..31f40b3 100644
> --- a/drivers/media/i2c/s5c73m3/s5c73m3-core.c
> +++ b/drivers/media/i2c/s5c73m3/s5c73m3-core.c
> @@ -1651,7 +1651,7 @@ static int s5c73m3_probe(struct i2c_client *client,
>  	if (ret < 0)
>  		goto out_err;
>  
> -	v4l2_info(sd, "%s: completed succesfully\n", __func__);
> +	v4l2_info(sd, "%s: completed successfully\n", __func__);
>  	return 0;
>  
>  out_err:
> diff --git a/drivers/mtd/nand/docg4.c b/drivers/mtd/nand/docg4.c
> index 7c38b8a..caa53b0 100644
> --- a/drivers/mtd/nand/docg4.c
> +++ b/drivers/mtd/nand/docg4.c
> @@ -494,7 +494,7 @@ static uint8_t docg4_read_byte(struct mtd_info *mtd)
>  		return status;
>  	}
>  
> -	dev_warn(doc->dev, "unexpectd call to read_byte()\n");
> +	dev_warn(doc->dev, "unexpected call to read_byte()\n");
>  
>  	return 0;
>  }
> diff --git a/drivers/net/ethernet/mellanox/mlx4/fw.c b/drivers/net/ethernet/mellanox/mlx4/fw.c
> index 0d63daa..8a750ca 100644
> --- a/drivers/net/ethernet/mellanox/mlx4/fw.c
> +++ b/drivers/net/ethernet/mellanox/mlx4/fw.c
> @@ -1739,7 +1739,7 @@ void mlx4_opreq_action(struct work_struct *work)
>  				   MLX4_CMD_GET_OP_REQ, MLX4_CMD_TIME_CLASS_A,
>  				   MLX4_CMD_NATIVE);
>  		if (err) {
> -			mlx4_err(dev, "Failed to retreive required operation: %d\n",
> +			mlx4_err(dev, "Failed to retrieve required operation: %d\n",
>  				 err);
>  			return;
>  		}
> diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
> index 3ca00e0..e8c56af 100644
> --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
> +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
> @@ -1722,7 +1722,7 @@ static void qlcnic_extend_lb_idc_cmpltn_wait(struct qlcnic_adapter *adapter,
>  	struct qlcnic_hardware_context *ahw = adapter->ahw;
>  	int temp;
>  
> -	netdev_info(adapter->netdev, "Recieved loopback IDC time extend event for 0x%x seconds\n",
> +	netdev_info(adapter->netdev, "Received loopback IDC time extend event for 0x%x seconds\n",
>  		    ahw->extend_lb_time);
>  	temp = ahw->extend_lb_time * 1000;
>  	*max_wait_count += temp / QLC_83XX_LB_MSLEEP_COUNT;
> diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c
> index 56501f4..8b13b03 100644
> --- a/drivers/net/wireless/ath/ath10k/pci.c
> +++ b/drivers/net/wireless/ath/ath10k/pci.c
> @@ -2407,7 +2407,7 @@ static int ath10k_pci_probe(struct pci_dev *pdev,
>  		break;
>  	default:
>  		ret = -ENODEV;
> -		ath10k_err("Unkown device ID: %d\n", pci_dev->device);
> +		ath10k_err("Unknown device ID: %d\n", pci_dev->device);
>  		goto err_ar_pci;
>  	}
>  
> diff --git a/drivers/regulator/tps65910-regulator.c b/drivers/regulator/tps65910-regulator.c
> index b8167df..87b85f4 100644
> --- a/drivers/regulator/tps65910-regulator.c
> +++ b/drivers/regulator/tps65910-regulator.c
> @@ -906,7 +906,7 @@ static int tps65910_set_ext_sleep_config(struct tps65910_reg *pmic,
>  		}
>  		ret = tps65910_reg_write(pmic->mfd, sr_reg_add, 0);
>  		if (ret < 0) {
> -			dev_err(mfd->dev, "Error in settting sr register\n");
> +			dev_err(mfd->dev, "Error in setting sr register\n");
>  			return ret;
>  		}
>  	}
> diff --git a/drivers/scsi/mvsas/mv_sas.c b/drivers/scsi/mvsas/mv_sas.c
> index 6b1b4e9..6c1f223 100644
> --- a/drivers/scsi/mvsas/mv_sas.c
> +++ b/drivers/scsi/mvsas/mv_sas.c
> @@ -1411,7 +1411,7 @@ static int mvs_exec_internal_tmf_task(struct domain_device *dev,
>  
>  		if (res) {
>  			del_timer(&task->slow_task->timer);
> -			mv_printk("executing internel task failed:%d\n", res);
> +			mv_printk("executing internal task failed:%d\n", res);
>  			goto ex_err;
>  		}
>  
> diff --git a/fs/btrfs/tests/free-space-tests.c b/fs/btrfs/tests/free-space-tests.c
> index 6fc8201..c8d9ddf 100644
> --- a/fs/btrfs/tests/free-space-tests.c
> +++ b/fs/btrfs/tests/free-space-tests.c
> @@ -101,7 +101,7 @@ static int test_extents(struct btrfs_block_group_cache *cache)
>  
>  	ret = btrfs_remove_free_space(cache, 2 * 1024 * 1024, 4096);
>  	if (ret) {
> -		test_msg("Error removing middle peice %d\n", ret);
> +		test_msg("Error removing middle piece %d\n", ret);
>  		return ret;
>  	}
>  
> @@ -266,7 +266,7 @@ static int test_bitmaps_and_extents(struct btrfs_block_group_cache *cache)
>  	}
>  
>  	if (test_check_exists(cache, 512 * 1024, 3 * 1024 * 1024)) {
> -		test_msg("Left over peices after removing overlapping\n");
> +		test_msg("Left over pieces after removing overlapping\n");
>  		return -1;
>  	}
>  
> 


-- 
~Randy

  reply	other threads:[~2013-10-12 23:04 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-30 14:19 [PATCH] [trivial]treewide: Fix typo in printk Masanari Iida
2013-10-12 23:04 ` Randy Dunlap [this message]
  -- strict thread matches above, loose matches on Subject: below --
2015-12-13  6:26 [PATCH] [trivial] treewide: " Masanari Iida
2015-12-16 18:34 ` Randy Dunlap
2015-10-15  4:26 Masanari Iida
2015-10-15 17:59 ` Randy Dunlap
2015-05-19 15:09 Masanari Iida
2015-05-19 21:36 ` Randy Dunlap
2014-08-28 17:26 Masanari Iida
2014-08-28 17:40 ` Geert Uytterhoeven
2014-08-28 18:00   ` Masanari Iida
2014-08-28 20:11 ` Randy Dunlap
2014-03-25 13:32 [PATCH] [trivial]treewide: " Masanari Iida
2014-03-25 14:13 ` Arend van Spriel
2014-03-25 17:04 ` Randy Dunlap
2014-01-07 12:58 [PATCH] [trivial] treewide: " Masanari Iida
2013-12-08 15:22 Masanari Iida
2013-12-08 18:46 ` Randy Dunlap
2013-08-19  4:10 [PATCH] [trivial]treewide: " Masanari Iida
2013-08-19 16:58 ` Randy Dunlap
2013-08-19 17:06   ` Joe Perches
2013-07-15 13:50 [PATCH] [trivial] treewide: " Masanari Iida
2013-07-15 15:06 ` Randy Dunlap
2013-05-30 14:44 Masanari Iida
2013-05-30 16:55 ` Randy Dunlap
2013-05-20 15:17 [PATCH] [trivial]treewide: " Masanari Iida
2013-05-20 16:28 ` Randy Dunlap

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5259D57C.6050208@infradead.org \
    --to=rdunlap@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=standby24x7@gmail.com \
    --cc=trivial@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.