summaryrefslogtreecommitdiffstats
path: root/hw/arm/z2.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2020-03-05 17:09:15 +0100
committerPeter Maydell2020-03-05 17:09:15 +0100
commit56329e38e6572bc6714282ff9f9ac0d1ed4ff55a (patch)
tree06af115b46c5659716a5ada3d0cf6e8313b63d5b /hw/arm/z2.c
parenthw/arm/omap_sx1: Simplify since the machines are little-endian only (diff)
downloadqemu-56329e38e6572bc6714282ff9f9ac0d1ed4ff55a.tar.gz
qemu-56329e38e6572bc6714282ff9f9ac0d1ed4ff55a.tar.xz
qemu-56329e38e6572bc6714282ff9f9ac0d1ed4ff55a.zip
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>
Diffstat (limited to 'hw/arm/z2.c')
-rw-r--r--hw/arm/z2.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/hw/arm/z2.c b/hw/arm/z2.c
index 4bb237f22d..a0f4095990 100644
--- a/hw/arm/z2.c
+++ b/hw/arm/z2.c
@@ -300,7 +300,6 @@ static void z2_init(MachineState *machine)
uint32_t sector_len = 0x10000;
PXA2xxState *mpu;
DriveInfo *dinfo;
- int be;
void *z2_lcd;
I2CBus *bus;
DeviceState *wm;
@@ -308,15 +307,10 @@ static void z2_init(MachineState *machine)
/* Setup CPU & memory */
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);
if (!pflash_cfi01_register(Z2_FLASH_BASE, "z2.flash0", Z2_FLASH_SIZE,
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");
exit(1);
}