summaryrefslogtreecommitdiff
path: root/hw/gumstix.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-01-14 02:36:29 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-01-14 02:36:29 +0000
commitb94ec3eca8d93e7502c28915eb11d1f1764ebe79 (patch)
tree0caca235ce83a5d5701fdae38c4f1108a840760f /hw/gumstix.c
parent1451299039e4cae0989abbb92749ed6e444f7e9e (diff)
downloadqemu-b94ec3eca8d93e7502c28915eb11d1f1764ebe79.tar.gz
Fully clean up on Mac OS X Leopard (Andreas Färber).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3907 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r--hw/gumstix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c
index 2cf52f9c07..81bb9578d0 100644
--- a/hw/gumstix.c
+++ b/hw/gumstix.c
@@ -76,9 +76,11 @@ static void connex_init(int ram_size, int vga_ram_size,
cpu->env->regs[15] = 0x00000000;
- /* Interrupt line of NIC is connected to GPIO line 36 */
+ /* Interrupt lines of the NICs are connected to GPIO lines 36 and 27 */
smc91c111_init(&nd_table[0], 0x04000300,
pxa2xx_gpio_in_get(cpu->gpio)[36]);
+ smc91c111_init(&nd_table[1], 0x08000300,
+ pxa2xx_gpio_in_get(cpu->gpio)[36]);
}
static void verdex_init(int ram_size, int vga_ram_size,