[rtems commit] nvdisk: swap arguments to checksum helper
Gedare Bloom
gedare at rtems.org
Thu Sep 5 19:07:53 UTC 2013
Module: rtems
Branch: master
Commit: 59261fba76ad1488adac05919fbc41915d4b5787
Changeset: http://git.rtems.org/rtems/commit/?id=59261fba76ad1488adac05919fbc41915d4b5787
Author: Gedare Bloom <gedare at rtems.org>
Date: Thu Sep 5 14:28:14 2013 -0400
nvdisk: swap arguments to checksum helper
The arguments to rtems_nvdisk_calc_crc16() are reversed when called from
rtems_nvdisk_page_checksum().
26053 Operands don't affect result
---
cpukit/libblock/src/nvdisk.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cpukit/libblock/src/nvdisk.c b/cpukit/libblock/src/nvdisk.c
index db97179..32a56b3 100644
--- a/cpukit/libblock/src/nvdisk.c
+++ b/cpukit/libblock/src/nvdisk.c
@@ -422,7 +422,7 @@ rtems_nvdisk_page_checksum (const uint8_t* buffer, uint32_t page_size)
uint32_t i;
for (i = 0; i < page_size; i++, buffer++)
- cs = rtems_nvdisk_calc_crc16 (cs, *buffer);
+ cs = rtems_nvdisk_calc_crc16 (*buffer, cs);
return cs;
}
More information about the vc
mailing list