aboutsummaryrefslogtreecommitdiffstats
path: root/hw/nseries.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 10:59:59 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 10:59:59 +0000
commit3d878caab914d6ac7b3b69e458971b7550ea790b (patch)
treec5f52cbc4b19e76d0a05e29efd4ff7309f9feaa8 /hw/nseries.c
parentd4354694e9813be1cb0b26ad1706701ea9b524ce (diff)
Set default max_cpus to one.
Clean-up machine definitions. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5566 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/nseries.c')
-rw-r--r--hw/nseries.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/nseries.c b/hw/nseries.c
index 3fd8099aa..80fd9e81d 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,
};