All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Hexagon (target/hexagon) fix typo in comment
@ 2021-03-15  4:55 Taylor Simpson
  2021-03-15  5:02 ` no-reply
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Taylor Simpson @ 2021-03-15  4:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: philmd, tsimpson, richard.henderson

Signed-of-by: Taylor Simpson <tsimpson@quicinc.com>
---
 target/hexagon/op_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/hexagon/op_helper.c b/target/hexagon/op_helper.c
index 9f19007..7361a07 100644
--- a/target/hexagon/op_helper.c
+++ b/target/hexagon/op_helper.c
@@ -297,7 +297,7 @@ int32_t HELPER(fcircadd)(int32_t RxV, int32_t offset, int32_t M, int32_t CS)
 }
 
 /*
- * Hexagon FP operations return ~0 insteat of NaN
+ * Hexagon FP operations return ~0 instead of NaN
  * The hex_check_sfnan/hex_check_dfnan functions perform this check
  */
 static float32 hex_check_sfnan(float32 x)
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hexagon (target/hexagon) fix typo in comment
  2021-03-15  4:55 [PATCH] Hexagon (target/hexagon) fix typo in comment Taylor Simpson
@ 2021-03-15  5:02 ` no-reply
  2021-03-15  9:28 ` Philippe Mathieu-Daudé
  2021-03-15 19:46 ` Richard Henderson
  2 siblings, 0 replies; 6+ messages in thread
From: no-reply @ 2021-03-15  5:02 UTC (permalink / raw)
  To: tsimpson; +Cc: richard.henderson, tsimpson, philmd, qemu-devel

Patchew URL: https://patchew.org/QEMU/1615784115-26559-1-git-send-email-tsimpson@quicinc.com/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Message-id: 1615784115-26559-1-git-send-email-tsimpson@quicinc.com
Subject: [PATCH] Hexagon (target/hexagon) fix typo in comment

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git rev-parse base > /dev/null || exit 0
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
Switched to a new branch 'test'
ffe0b01 Hexagon (target/hexagon) fix typo in comment

=== OUTPUT BEGIN ===
ERROR: Missing Signed-off-by: line(s)

total: 1 errors, 0 warnings, 8 lines checked

Commit ffe0b013056f (Hexagon (target/hexagon) fix typo in comment) has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/1615784115-26559-1-git-send-email-tsimpson@quicinc.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hexagon (target/hexagon) fix typo in comment
  2021-03-15  4:55 [PATCH] Hexagon (target/hexagon) fix typo in comment Taylor Simpson
  2021-03-15  5:02 ` no-reply
@ 2021-03-15  9:28 ` Philippe Mathieu-Daudé
  2021-04-30 16:57   ` Laurent Vivier
  2021-03-15 19:46 ` Richard Henderson
  2 siblings, 1 reply; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-03-15  9:28 UTC (permalink / raw)
  To: Taylor Simpson, qemu-devel; +Cc: QEMU Trivial, richard.henderson

On 3/15/21 5:55 AM, Taylor Simpson wrote:
> Signed-of-by: Taylor Simpson <tsimpson@quicinc.com>

'git-commit -s' flag add the S-o-b line automatically ;)

Otherwise:
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> ---
>  target/hexagon/op_helper.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/target/hexagon/op_helper.c b/target/hexagon/op_helper.c
> index 9f19007..7361a07 100644
> --- a/target/hexagon/op_helper.c
> +++ b/target/hexagon/op_helper.c
> @@ -297,7 +297,7 @@ int32_t HELPER(fcircadd)(int32_t RxV, int32_t offset, int32_t M, int32_t CS)
>  }
>  
>  /*
> - * Hexagon FP operations return ~0 insteat of NaN
> + * Hexagon FP operations return ~0 instead of NaN
>   * The hex_check_sfnan/hex_check_dfnan functions perform this check
>   */
>  static float32 hex_check_sfnan(float32 x)
> 



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hexagon (target/hexagon) fix typo in comment
  2021-03-15  4:55 [PATCH] Hexagon (target/hexagon) fix typo in comment Taylor Simpson
  2021-03-15  5:02 ` no-reply
  2021-03-15  9:28 ` Philippe Mathieu-Daudé
@ 2021-03-15 19:46 ` Richard Henderson
  2021-03-15 21:12   ` Philippe Mathieu-Daudé
  2 siblings, 1 reply; 6+ messages in thread
From: Richard Henderson @ 2021-03-15 19:46 UTC (permalink / raw)
  To: Taylor Simpson, qemu-devel; +Cc: philmd

On 3/14/21 10:55 PM, Taylor Simpson wrote:
> Signed-of-by: Taylor Simpson<tsimpson@quicinc.com>
> ---
>   target/hexagon/op_helper.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Queued.


r~


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hexagon (target/hexagon) fix typo in comment
  2021-03-15 19:46 ` Richard Henderson
@ 2021-03-15 21:12   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-03-15 21:12 UTC (permalink / raw)
  To: Richard Henderson, Taylor Simpson, qemu-devel

On 3/15/21 8:46 PM, Richard Henderson wrote:
> On 3/14/21 10:55 PM, Taylor Simpson wrote:
>> Signed-of-by: Taylor Simpson<tsimpson@quicinc.com>
>> ---
>>   target/hexagon/op_helper.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Queued.

Can you s/Signed-of-by/Signed-off-by/ ? ;)


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hexagon (target/hexagon) fix typo in comment
  2021-03-15  9:28 ` Philippe Mathieu-Daudé
@ 2021-04-30 16:57   ` Laurent Vivier
  0 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2021-04-30 16:57 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, Taylor Simpson, qemu-devel
  Cc: QEMU Trivial, richard.henderson

Le 15/03/2021 à 10:28, Philippe Mathieu-Daudé a écrit :
> On 3/15/21 5:55 AM, Taylor Simpson wrote:
>> Signed-of-by: Taylor Simpson <tsimpson@quicinc.com>
> 
> 'git-commit -s' flag add the S-o-b line automatically ;)
> 
> Otherwise:
> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> 
>> ---
>>  target/hexagon/op_helper.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/target/hexagon/op_helper.c b/target/hexagon/op_helper.c
>> index 9f19007..7361a07 100644
>> --- a/target/hexagon/op_helper.c
>> +++ b/target/hexagon/op_helper.c
>> @@ -297,7 +297,7 @@ int32_t HELPER(fcircadd)(int32_t RxV, int32_t offset, int32_t M, int32_t CS)
>>  }
>>  
>>  /*
>> - * Hexagon FP operations return ~0 insteat of NaN
>> + * Hexagon FP operations return ~0 instead of NaN
>>   * The hex_check_sfnan/hex_check_dfnan functions perform this check
>>   */
>>  static float32 hex_check_sfnan(float32 x)
>>
> 
> 

Applied to my trivial-patches branch (with the fixed S-o-b)

Thanks,
Laurent



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-04-30 17:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-15  4:55 [PATCH] Hexagon (target/hexagon) fix typo in comment Taylor Simpson
2021-03-15  5:02 ` no-reply
2021-03-15  9:28 ` Philippe Mathieu-Daudé
2021-04-30 16:57   ` Laurent Vivier
2021-03-15 19:46 ` Richard Henderson
2021-03-15 21:12   ` Philippe Mathieu-Daudé

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.