* [Qemu-devel] [PATCH] misc: Fix typos in comments
@ 2014-03-07 18:48 Stefan Weil
2014-03-07 19:06 ` Andreas Färber
0 siblings, 1 reply; 3+ messages in thread
From: Stefan Weil @ 2014-03-07 18:48 UTC (permalink / raw)
To: qemu-trivial; +Cc: Peter Maydell, Stefan Weil, qemu-devel, Alexander Graf
Codespell found and fixed these new typos:
* doesnt -> doesn't
* funtion -> function
* perfomance -> performance
* remaing -> remaining
A code style issue (line too long) was fixed manually.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
hw/intc/arm_gic_kvm.c | 2 +-
hw/net/fsl_etsec/rings.c | 4 ++--
target-arm/helper.c | 2 +-
target-ppc/int_helper.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/intc/arm_gic_kvm.c b/hw/intc/arm_gic_kvm.c
index 100b6bf..719d227 100644
--- a/hw/intc/arm_gic_kvm.c
+++ b/hw/intc/arm_gic_kvm.c
@@ -148,7 +148,7 @@ typedef void (*vgic_translate_fn)(GICState *s, int irq, int cpu,
uint32_t *field, bool to_kernel);
/* synthetic translate function used for clear/set registers to completely
- * clear a setting using a clear-register before setting the remaing bits
+ * clear a setting using a clear-register before setting the remaining bits
* using a set-register */
static void translate_clear(GICState *s, int irq, int cpu,
uint32_t *field, bool to_kernel)
diff --git a/hw/net/fsl_etsec/rings.c b/hw/net/fsl_etsec/rings.c
index 7760272..d7c38fa 100644
--- a/hw/net/fsl_etsec/rings.c
+++ b/hw/net/fsl_etsec/rings.c
@@ -195,8 +195,8 @@ static void process_tx_fcb(eTSEC *etsec)
/* if packet is IP4 and IP checksum is requested */
if (flags & FCB_TX_IP && flags & FCB_TX_CIP) {
- /* do IP4 checksum (TODO This funtion does TCP/UDP checksum but not sure
- * if it also does IP4 checksum. */
+ /* do IP4 checksum (TODO This function does TCP/UDP checksum
+ * but not sure if it also does IP4 checksum. */
net_checksum_calculate(etsec->tx_buffer + 8,
etsec->tx_buffer_len - 8);
}
diff --git a/target-arm/helper.c b/target-arm/helper.c
index 90f85f1..3495220 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -469,7 +469,7 @@ static const ARMCPRegInfo v6_cp_reginfo[] = {
static CPAccessResult pmreg_access(CPUARMState *env, const ARMCPRegInfo *ri)
{
- /* Perfomance monitor registers user accessibility is controlled
+ /* Performance monitor registers user accessibility is controlled
* by PMUSERENR.
*/
if (arm_current_pl(env) == 0 && !env->cp15.c9_pmuserenr) {
diff --git a/target-ppc/int_helper.c b/target-ppc/int_helper.c
index 63dde94..e14e304 100644
--- a/target-ppc/int_helper.c
+++ b/target-ppc/int_helper.c
@@ -2216,7 +2216,7 @@ static int bcd_cmp_mag(ppc_avr_t *a, ppc_avr_t *b)
uint8_t dig_a = bcd_get_digit(a, i, &invalid);
uint8_t dig_b = bcd_get_digit(b, i, &invalid);
if (unlikely(invalid)) {
- return 0; /* doesnt matter */
+ return 0; /* doesn't matter */
} else if (dig_a > dig_b) {
return 1;
} else if (dig_a < dig_b) {
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] misc: Fix typos in comments
2014-03-07 18:48 [Qemu-devel] [PATCH] misc: Fix typos in comments Stefan Weil
@ 2014-03-07 19:06 ` Andreas Färber
2014-03-14 16:25 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Färber @ 2014-03-07 19:06 UTC (permalink / raw)
To: Stefan Weil, qemu-trivial; +Cc: Peter Maydell, qemu-devel, Alexander Graf
Am 07.03.2014 19:48, schrieb Stefan Weil:
> Codespell found and fixed these new typos:
>
> * doesnt -> doesn't
> * funtion -> function
> * perfomance -> performance
> * remaing -> remaining
>
> A code style issue (line too long) was fixed manually.
"coding style"?
>
> Signed-off-by: Stefan Weil <sw@weilnetz.de>
[...]
> diff --git a/hw/net/fsl_etsec/rings.c b/hw/net/fsl_etsec/rings.c
> index 7760272..d7c38fa 100644
> --- a/hw/net/fsl_etsec/rings.c
> +++ b/hw/net/fsl_etsec/rings.c
> @@ -195,8 +195,8 @@ static void process_tx_fcb(eTSEC *etsec)
>
> /* if packet is IP4 and IP checksum is requested */
> if (flags & FCB_TX_IP && flags & FCB_TX_CIP) {
> - /* do IP4 checksum (TODO This funtion does TCP/UDP checksum but not sure
> - * if it also does IP4 checksum. */
> + /* do IP4 checksum (TODO This function does TCP/UDP checksum
> + * but not sure if it also does IP4 checksum. */
While rebreaking it, you could've also added the missing parenthesis,
after the dot I guess. Apart from that,
Reviewed-by: Andreas Färber <afaerber@suse.de>
Thanks,
Andreas
> net_checksum_calculate(etsec->tx_buffer + 8,
> etsec->tx_buffer_len - 8);
> }
[snip]
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH] misc: Fix typos in comments
2014-03-07 19:06 ` Andreas Färber
@ 2014-03-14 16:25 ` Michael Tokarev
0 siblings, 0 replies; 3+ messages in thread
From: Michael Tokarev @ 2014-03-14 16:25 UTC (permalink / raw)
To: Andreas Färber
Cc: qemu-trivial, Stefan Weil, Alexander Graf, qemu-devel,
Peter Maydell
07.03.2014 23:06, Andreas Färber wrote:
> Am 07.03.2014 19:48, schrieb Stefan Weil:
[]
>> if (flags & FCB_TX_IP && flags & FCB_TX_CIP) {
>> - /* do IP4 checksum (TODO This funtion does TCP/UDP checksum but not sure
>> - * if it also does IP4 checksum. */
>> + /* do IP4 checksum (TODO This function does TCP/UDP checksum
>> + * but not sure if it also does IP4 checksum. */
>
> While rebreaking it, you could've also added the missing parenthesis,
> after the dot I guess. Apart from that,
Actually, that's a fun comment. "do IP4 checksum, but unsure if it also does IP4 checksum".
Ie, do something but I'm not sure if it actually does that... ;)
Applied to -trivial, fixing both the commit comment and this parenthesis.
Thanks,
/mjt
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-14 16:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-07 18:48 [Qemu-devel] [PATCH] misc: Fix typos in comments Stefan Weil
2014-03-07 19:06 ` Andreas Färber
2014-03-14 16:25 ` [Qemu-devel] [Qemu-trivial] " Michael Tokarev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).