mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
hw/sd: 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-37-f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
246e195b52
commit
4c8f9735da
2 changed files with 5 additions and 5 deletions
|
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/units.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "qapi/error.h"
|
||||
#include "hw/hw.h"
|
||||
|
|
@ -32,7 +33,6 @@
|
|||
#include "hw/sd/sdhci.h"
|
||||
#include "sdhci-internal.h"
|
||||
#include "qemu/log.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "trace.h"
|
||||
|
||||
#define TYPE_SDHCI_BUS "sdhci-bus"
|
||||
|
|
@ -737,7 +737,7 @@ static void get_adma_description(SDHCIState *s, ADMADescr *dscr)
|
|||
if ((dscr->attr & SDHC_ADMA_ATTR_ACT_MASK) == SDHC_ADMA_ATTR_SET_LEN) {
|
||||
dscr->length = (uint16_t)extract32(adma1, 12, 16);
|
||||
} else {
|
||||
dscr->length = 4096;
|
||||
dscr->length = 4 * KiB;
|
||||
}
|
||||
break;
|
||||
case SDHC_CTRL_ADMA2_64:
|
||||
|
|
@ -785,7 +785,7 @@ static void sdhci_do_adma(SDHCIState *s)
|
|||
return;
|
||||
}
|
||||
|
||||
length = dscr.length ? dscr.length : 65536;
|
||||
length = dscr.length ? dscr.length : 64 * KiB;
|
||||
|
||||
switch (dscr.attr & SDHC_ADMA_ATTR_ACT_MASK) {
|
||||
case SDHC_ADMA_ATTR_ACT_TRAN: /* data transfer */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue