aboutsummaryrefslogtreecommitdiffstats
path: root/hw/gumstix.c
diff options
context:
space:
mode:
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 17:24:39 +0000
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-11 17:24:39 +0000
commita0b753dfd3920df146a5f4d05e442e3c522900c7 (patch)
treeb8246516020c87e2ec97b5140706d749e70d3e8d /hw/gumstix.c
parent94a6b54fd6d2d3321066cb4db7abeeb417af9365 (diff)
Remove more redundant ram size checks.
Signed-off-by: Paul Brook <paul@codesourcery.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7089 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r--hw/gumstix.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c
index 70abbdc27..87d84b6b9 100644
--- a/hw/gumstix.c
+++ b/hw/gumstix.c
@@ -52,12 +52,6 @@ static void connex_init(ram_addr_t ram_size, int vga_ram_size,
uint32_t connex_rom = 0x01000000;
uint32_t connex_ram = 0x04000000;
- if (ram_size < (connex_ram + connex_rom + PXA2XX_INTERNAL_SIZE)) {
- fprintf(stderr, "This platform requires %i bytes of memory\n",
- connex_ram + connex_rom + PXA2XX_INTERNAL_SIZE);
- exit(1);
- }
-
cpu = pxa255_init(connex_ram);
index = drive_get_index(IF_PFLASH, 0, 0);
@@ -92,12 +86,6 @@ static void verdex_init(ram_addr_t ram_size, int vga_ram_size,
uint32_t verdex_rom = 0x02000000;
uint32_t verdex_ram = 0x10000000;
- if (ram_size < (verdex_ram + verdex_rom + PXA2XX_INTERNAL_SIZE)) {
- fprintf(stderr, "This platform requires %i bytes of memory\n",
- verdex_ram + verdex_rom + PXA2XX_INTERNAL_SIZE);
- exit(1);
- }
-
cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0");
index = drive_get_index(IF_PFLASH, 0, 0);