mirror of https://github.com/xemu-project/xemu.git
hw/arm/z2: Simplify since the machines are little-endian only
We only build the little-endian softmmu configurations. Checking for big endian is pointless, remove the unused code. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
88e68dfcc5
commit
56329e38e6
|
@ -300,7 +300,6 @@ static void z2_init(MachineState *machine)
|
||||||
uint32_t sector_len = 0x10000;
|
uint32_t sector_len = 0x10000;
|
||||||
PXA2xxState *mpu;
|
PXA2xxState *mpu;
|
||||||
DriveInfo *dinfo;
|
DriveInfo *dinfo;
|
||||||
int be;
|
|
||||||
void *z2_lcd;
|
void *z2_lcd;
|
||||||
I2CBus *bus;
|
I2CBus *bus;
|
||||||
DeviceState *wm;
|
DeviceState *wm;
|
||||||
|
@ -308,15 +307,10 @@ static void z2_init(MachineState *machine)
|
||||||
/* Setup CPU & memory */
|
/* Setup CPU & memory */
|
||||||
mpu = pxa270_init(address_space_mem, z2_binfo.ram_size, machine->cpu_type);
|
mpu = pxa270_init(address_space_mem, z2_binfo.ram_size, machine->cpu_type);
|
||||||
|
|
||||||
#ifdef TARGET_WORDS_BIGENDIAN
|
|
||||||
be = 1;
|
|
||||||
#else
|
|
||||||
be = 0;
|
|
||||||
#endif
|
|
||||||
dinfo = drive_get(IF_PFLASH, 0, 0);
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
||||||
if (!pflash_cfi01_register(Z2_FLASH_BASE, "z2.flash0", Z2_FLASH_SIZE,
|
if (!pflash_cfi01_register(Z2_FLASH_BASE, "z2.flash0", Z2_FLASH_SIZE,
|
||||||
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
||||||
sector_len, 4, 0, 0, 0, 0, be)) {
|
sector_len, 4, 0, 0, 0, 0, 0)) {
|
||||||
error_report("Error registering flash memory");
|
error_report("Error registering flash memory");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue