[PATCH] hexagon: drop unexpected word 'a' in comments

Jiang Jian posted 1 patch 1 year, 10 months ago
arch/hexagon/kernel/traps.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] hexagon: drop unexpected word 'a' in comments
Posted by Jiang Jian 1 year, 10 months ago
there is an unexpected word 'a' in the comments that need to be dropped

file - arch/hexagon/kernel/traps.c
line - 262

* Precise bus errors may be recoverable with a a retry,

changed to:

* Precise bus errors may be recoverable with a retry,

Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
---
 arch/hexagon/kernel/traps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/hexagon/kernel/traps.c b/arch/hexagon/kernel/traps.c
index 6447763ce5a9..a1f1085887aa 100644
--- a/arch/hexagon/kernel/traps.c
+++ b/arch/hexagon/kernel/traps.c
@@ -259,7 +259,7 @@ static void illegal_instruction(struct pt_regs *regs)
 }
 
 /*
- * Precise bus errors may be recoverable with a a retry,
+ * Precise bus errors may be recoverable with a retry,
  * but for now, treat them as irrecoverable.
  */
 static void precise_bus_error(struct pt_regs *regs)
-- 
2.17.1
RE: [PATCH] hexagon: drop unexpected word 'a' in comments
Posted by Brian Cain 1 year, 10 months ago
> -----Original Message-----
> From: Jiang Jian <jiangjian@cdjrlc.com>
...
> 
> there is an unexpected word 'a' in the comments that need to be dropped
> 
> file - arch/hexagon/kernel/traps.c
> line - 262
> 
> * Precise bus errors may be recoverable with a a retry,
> 
> changed to:
> 
> * Precise bus errors may be recoverable with a retry,
> 
> Signed-off-by: Jiang Jian <jiangjian@cdjrlc.com>
> ---
>  arch/hexagon/kernel/traps.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/hexagon/kernel/traps.c b/arch/hexagon/kernel/traps.c
> index 6447763ce5a9..a1f1085887aa 100644
> --- a/arch/hexagon/kernel/traps.c
> +++ b/arch/hexagon/kernel/traps.c
> @@ -259,7 +259,7 @@ static void illegal_instruction(struct pt_regs *regs)
>  }
> 
>  /*
> - * Precise bus errors may be recoverable with a a retry,
> + * Precise bus errors may be recoverable with a retry,
>   * but for now, treat them as irrecoverable.
>   */
>  static void precise_bus_error(struct pt_regs *regs)
> --
> 2.17.1

Acked-by: Brian Cain <bcain@quicinc.com>