mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
hw/block: Use the IEC binary prefix definitions
It eases code review, unit is explicit. Patch generated using: $ git grep -E '(1024|2048|4096|8192|(<<|>>).?(10|20|30))' hw/ include/hw/ and modified manually. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20180625124238.25339-14-f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
3d779b93e0
commit
e8400cf385
3 changed files with 7 additions and 4 deletions
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/units.h"
|
||||
#include "hw/hw.h"
|
||||
#include "sysemu/block-backend.h"
|
||||
#include "hw/ssi/ssi.h"
|
||||
|
@ -541,12 +542,12 @@ static void flash_erase(Flash *s, int offset, FlashCMD cmd)
|
|||
switch (cmd) {
|
||||
case ERASE_4K:
|
||||
case ERASE4_4K:
|
||||
len = 4 << 10;
|
||||
len = 4 * KiB;
|
||||
capa_to_assert = ER_4K;
|
||||
break;
|
||||
case ERASE_32K:
|
||||
case ERASE4_32K:
|
||||
len = 32 << 10;
|
||||
len = 32 * KiB;
|
||||
capa_to_assert = ER_32K;
|
||||
break;
|
||||
case ERASE_SECTOR:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue