mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
hw/devices: Move LAN9118 declarations into a new header
Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190412165416.7977-10-philmd@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
a331dd0299
commit
66b03dcec2
@@ -8,7 +8,4 @@
|
||||
/* smc91c111.c */
|
||||
void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
|
||||
|
||||
/* lan9118.c */
|
||||
void lan9118_init(NICInfo *, uint32_t, qemu_irq);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* SMSC LAN9118 Ethernet interface emulation
|
||||
*
|
||||
* Copyright (c) 2009 CodeSourcery, LLC.
|
||||
* Written by Paul Brook
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
|
||||
#ifndef HW_NET_LAN9118_H
|
||||
#define HW_NET_LAN9118_H
|
||||
|
||||
#include "hw/irq.h"
|
||||
#include "net/net.h"
|
||||
|
||||
void lan9118_init(NICInfo *, uint32_t, qemu_irq);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user