794093e80a
"hw/ide.h" is a mixed bag of lost IDE declarations. Extract isa_ide_init() and the TYPE_ISA_IDE QOM declarations to a new "hw/ide/isa.h" header. Rename ISAIDEState::isairq as 'irqnum' to emphasize this is not a qemu_irq object but the number (index) of an ISA IRQ. Message-Id: <20230215112712.23110-5-philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Bernhard Beschow <shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
21 lines
449 B
C
21 lines
449 B
C
/*
|
|
* QEMU IDE Emulation: ISA Bus support.
|
|
*
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
* Copyright (c) 2006 Openedhand Ltd.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef HW_IDE_ISA_H
|
|
#define HW_IDE_ISA_H
|
|
|
|
#include "qom/object.h"
|
|
|
|
#define TYPE_ISA_IDE "isa-ide"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISAIDEState, ISA_IDE)
|
|
|
|
ISADevice *isa_ide_init(ISABus *bus, int iobase, int iobase2, int irqnum,
|
|
DriveInfo *hd0, DriveInfo *hd1);
|
|
|
|
#endif
|