diff options
author | Stefan Weil <sw@weilnetz.de> | 2014-03-07 19:48:59 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-03-15 13:54:18 +0400 |
commit | 3b163b0165b1eee51afd00aeae8d2ad41d05c2a2 (patch) | |
tree | fc6e7ab151abe7cccd3bb57b44f1616d0abbf84f /hw/net/fsl_etsec/rings.c | |
parent | f214530f56b99be507e40cc261c9616ec84b72d3 (diff) | |
download | qemu-3b163b0165b1eee51afd00aeae8d2ad41d05c2a2.zip qemu-3b163b0165b1eee51afd00aeae8d2ad41d05c2a2.tar.gz qemu-3b163b0165b1eee51afd00aeae8d2ad41d05c2a2.tar.bz2 |
misc: Fix typos in comments
Codespell found and fixed these new typos:
* doesnt -> doesn't
* funtion -> function
* perfomance -> performance
* remaing -> remaining
A coding style issue (line too long) was fixed manually.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/net/fsl_etsec/rings.c')
-rw-r--r-- | hw/net/fsl_etsec/rings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/net/fsl_etsec/rings.c b/hw/net/fsl_etsec/rings.c index 7760272..26b71f6 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); } |