mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Check NIC model in some NIC init functions (Mark McLoughlin)
Some NIC init functions are only called when that model is the only valid model. In that case, it makes sense to use qemu_check_nic_model() from the NIC init function itself. Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6286 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
973cbd37ce
commit
0ae18ceeaa
18 changed files with 41 additions and 101 deletions
|
@ -1361,10 +1361,8 @@ static void stellaris_init(const char *kernel_filename, const char *cpu_model,
|
|||
pl022_init(0x40008000, pic[7], NULL, NULL);
|
||||
}
|
||||
}
|
||||
if (board->dc4 & (1 << 28)) {
|
||||
/* FIXME: Obey network model. */
|
||||
if (board->dc4 & (1 << 28))
|
||||
stellaris_enet_init(&nd_table[0], 0x40048000, pic[42]);
|
||||
}
|
||||
if (board->peripherals & BP_GAMEPAD) {
|
||||
qemu_irq gpad_irq[5];
|
||||
static const int gpad_keycode[5] = { 0xc8, 0xd0, 0xcb, 0xcd, 0x1d };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue