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
This commit is contained in:
Gedare Bloom
2013-09-05 14:28:14 -04:00
parent 5f040b8829
commit 59261fba76

View File

@@ -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;
}