diff options
Diffstat (limited to 'hw/nseries.c')
-rw-r--r-- | hw/nseries.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/nseries.c b/hw/nseries.c index 3fd8099aae..80fd9e81df 100644 --- a/hw/nseries.c +++ b/hw/nseries.c @@ -1407,14 +1407,14 @@ QEMUMachine n800_machine = { .name = "n800", .desc = "Nokia N800 tablet aka. RX-34 (OMAP2420)", .init = n800_init, - .ram_require = (0x08000000 + 0x00010000 + OMAP242X_SRAM_SIZE) | RAMSIZE_FIXED, - .max_cpus = 1, + .ram_require = (0x08000000 + 0x00010000 + OMAP242X_SRAM_SIZE) | + RAMSIZE_FIXED, }; QEMUMachine n810_machine = { .name = "n810", .desc = "Nokia N810 tablet aka. RX-44 (OMAP2420)", .init = n810_init, - .ram_require = (0x08000000 + 0x00010000 + OMAP242X_SRAM_SIZE) | RAMSIZE_FIXED, - .max_cpus = 1, + .ram_require = (0x08000000 + 0x00010000 + OMAP242X_SRAM_SIZE) | + RAMSIZE_FIXED, }; |