mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-23 18:12:00 -06:00

Since uWireSlave is only used in this new header, there is no need to expose it via "qemu/typedefs.h". Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20190412165416.7977-9-philmd@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
14 lines
260 B
C
14 lines
260 B
C
#ifndef QEMU_DEVICES_H
|
|
#define QEMU_DEVICES_H
|
|
|
|
/* Devices that have nowhere better to go. */
|
|
|
|
#include "hw/hw.h"
|
|
|
|
/* smc91c111.c */
|
|
void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
|
|
|
|
/* lan9118.c */
|
|
void lan9118_init(NICInfo *, uint32_t, qemu_irq);
|
|
|
|
#endif
|