public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <rdunlap@infradead.org>
To: Michael Opdenacker <michael.opdenacker@free-electrons.com>,
	trivial@kernel.org, joe@perches.com, akpm@linux-foundation.org,
	arend@broadcom.com, gregkh@linuxfoundation.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] [RESEND][TRIVIAL] treewide: fix occurrences of "the the "
Date: Thu, 02 Oct 2014 10:25:16 -0700	[thread overview]
Message-ID: <542D8A7C.6080908@infradead.org> (raw)
In-Reply-To: <1412193293-8835-1-git-send-email-michael.opdenacker@free-electrons.com>

Here are a few corrections for you.


On 10/01/14 12:54, Michael Opdenacker wrote:
> Fix all occurrences of "the the " in the source code,
> comments and documentation.
> 

and occasionally "in in "

> The replacement couldn't be automated because sometimes
> the first "the" was meant to be another word.
> 
> Example: "according the the"
> meaning: "according to the"
> 
> Note that I sometimes took the opportunity to fix
> other spelling issues or typos in the same sentences.
> I also fixed a few checkpatch errors in the same
> lines, but not all of them (should be addressed by
> separate patches).

including reformatting of some comments.

> Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
> ---
>  225 files changed, 263 insertions(+), 263 deletions(-)

> diff --git a/arch/xtensa/kernel/entry.S b/arch/xtensa/kernel/entry.S
> index 82bbfa5a05b3..5f2cdfe6f0c2 100644
> --- a/arch/xtensa/kernel/entry.S
> +++ b/arch/xtensa/kernel/entry.S
> @@ -830,14 +830,14 @@ ENDPROC(unrecoverable_exception)
>   * of the proper size instead.
>   *
>   * This algorithm simply backs out the register changes started by the user
> - * excpetion handler, makes it appear that we have started a window underflow
> + * exception handler, makes it appear that we have started a window underflow
>   * by rotating the window back and then setting the old window base (OWB) in
>   * the 'ps' register with the rolled back window base. The 'movsp' instruction
>   * will be re-executed and this time since the next window frames is in the
>   * active AR registers it won't cause an exception.
>   *
>   * If the WindowUnderflow code gets a TLB miss the page will get mapped
> - * the the partial windeowUnderflow will be handeled in the double exception
> + * and the partial windeowUnderflow will be handeled in the double exception

                                               handled

>   * handler.
>   *
>   * Entry condition:

> diff --git a/drivers/net/wireless/ath/wcn36xx/hal.h b/drivers/net/wireless/ath/wcn36xx/hal.h
> index a1f1127d7808..f3aa063dee4b 100644
> --- a/drivers/net/wireless/ath/wcn36xx/hal.h
> +++ b/drivers/net/wireless/ath/wcn36xx/hal.h
> @@ -1609,7 +1609,7 @@ struct wcn36xx_hal_config_bss_params {
>  
>  	/* HAL should update the existing BSS entry, if this flag is set.
>  	 * UMAC will set this flag in case of reassoc, where we want to
> -	 * resue the the old BSSID and still return success 0 = Add, 1 =
> +	 * reuse the old BSSID and still return success 0 = Add, 1 =
>  	 * Update */
>  	u8 action;
>  
> @@ -1746,7 +1746,7 @@ struct wcn36xx_hal_config_bss_params_v1 {
>  
>  	/* HAL should update the existing BSS entry, if this flag is set.
>  	 * UMAC will set this flag in case of reassoc, where we want to
> -	 * resue the the old BSSID and still return success 0 = Add, 1 =
> +	 * reuse the old BSSID and still return success 0 = Add, 1 =
>  	 * Update */
>  	u8 action;
>  
> @@ -3739,7 +3739,7 @@ struct wcn36xx_hal_dump_cmd_rsp_msg {
>  	/* Length of the responce message */
>  	u32 rsp_length;
>  
> -	/* FIXME: Currently considering the the responce will be less than
> +	/* FIXME: Currently considering that the responce will be less than

	                                         response

>  	 * 100bytes */
>  	u8 rsp_buffer[DUMPCMD_RSP_BUFFER];
>  } __packed;

> diff --git a/drivers/target/target_core_alua.c b/drivers/target/target_core_alua.c
> index fbc5ebb5f761..d06dd9316716 100644
> --- a/drivers/target/target_core_alua.c
> +++ b/drivers/target/target_core_alua.c
> @@ -410,8 +410,8 @@ target_emulate_set_target_port_groups(struct se_cmd *cmd)
>  			spin_unlock(&dev->t10_alua.tg_pt_gps_lock);
>  		} else {
>  			/*
> -			 * Extract the RELATIVE TARGET PORT IDENTIFIER to identify
> -			 * the Target Port in question for the the incoming
> +			 * Extact the RELATIVE TARGET PORT IDENTIFIER to identify

			   Extract

> +			 * the Target Port in question for the incoming
>  			 * SET_TARGET_PORT_GROUPS op.
>  			 */
>  			rtpi = get_unaligned_be16(ptr + 2);

> diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c
> index 158701da2d31..c13e0636ea44 100644
> --- a/net/sctp/chunk.c
> +++ b/net/sctp/chunk.c
> @@ -199,8 +199,8 @@ struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *asoc,
>  		sizeof(struct sctphdr) - sizeof(struct sctp_data_chunk)) & ~3;
>  
>  	max = asoc->frag_point;
> -	/* If the the peer requested that we authenticate DATA chunks
> -	 * we need to account for bundling of the AUTH chunks along with
> +	/* If the peer requested that we authenticate DATA chunks
> +	 * we need to accound for bundling of the AUTH chunks along with

	              account (original was correct)
>  	 * DATA.
>  	 */
>  	if (sctp_auth_send_cid(SCTP_CID_DATA, asoc)) {


-- 
~Randy

  reply	other threads:[~2014-10-02 17:25 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-12  5:10 [PATCH] [RESEND][TRIVIAL] treewide: fix occurrences of "the the " Michael Opdenacker
2013-11-12  8:32 ` Arend van Spriel
2013-11-13  9:27   ` Michael Opdenacker
2013-12-09 10:36   ` [PATCH][RESEND] [TRIVIAL] " Michael Opdenacker
2014-03-05  5:52     ` [PATCH] [RESEND][TRIVIAL] " Michael Opdenacker
2014-03-05  5:55       ` Michael Opdenacker
2014-03-11 12:25         ` Michael Opdenacker
2014-03-11 12:30           ` Michael Opdenacker
2014-10-01  9:53       ` Michael Opdenacker
2014-10-01 13:32         ` Joe Perches
2014-10-01 19:49           ` Michael Opdenacker
2014-10-01 19:54             ` Michael Opdenacker
2014-10-02 17:25               ` Randy Dunlap [this message]
2014-10-02 19:18                 ` Michael Opdenacker
2014-10-02 19:24                   ` Michael Opdenacker
2014-10-02 20:00                     ` Randy Dunlap
2014-10-02 20:06                       ` Joe Perches
2014-10-02 20:11                         ` Michael Opdenacker
2014-10-02 20:13                           ` Michael Opdenacker
2014-10-02 20:15                             ` Michael Opdenacker
2014-10-02 22:37                               ` Eduardo Valentin
2014-10-16 12:35                                 ` Michael Opdenacker
2014-10-16 12:39                                   ` Michael Opdenacker
2014-10-16 19:38                                   ` Michael Opdenacker
2014-10-16 19:42                                     ` Michael Opdenacker
2015-03-27  1:55                                       ` Michael Opdenacker
2015-03-27  2:16                                         ` Michael Opdenacker
2015-03-27  9:34                                           ` Jiri Kosina
2015-04-20  4:55                                             ` Michael Opdenacker
2015-04-20  5:02                                               ` Michael Opdenacker
2015-03-27  2:23                                         ` Joe Perches
2015-03-27  2:52                                           ` Michael Opdenacker
2015-03-27  2:55                                             ` Michael Opdenacker
2014-10-02 20:07                       ` Michael Opdenacker
2014-10-02 20:07                   ` Michael Opdenacker

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=542D8A7C.6080908@infradead.org \
    --to=rdunlap@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=arend@broadcom.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michael.opdenacker@free-electrons.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox