Seceral files contained onnecessary dependencies on hw/pxa.h header. Drop unused references.
Signed-off-by: Dmitry Eremin-Solenikov <dbarysh...@gmail.com> --- hw/mainstone.c | 2 +- hw/mainstone.h | 2 +- hw/mst_fpga.c | 9 ++++----- hw/tc6393xb.c | 1 - hw/zaurus.c | 1 - 5 files changed, 6 insertions(+), 9 deletions(-) diff --git a/hw/mainstone.c b/hw/mainstone.c index 58e3f86..61cac8a 100644 --- a/hw/mainstone.c +++ b/hw/mainstone.c @@ -117,7 +117,7 @@ static void mainstone_common_init(ram_addr_t ram_size, } } - mst_irq = mst_irq_init(cpu, MST_FPGA_PHYS, PXA2XX_PIC_GPIO_0); + mst_irq = mst_irq_init(MST_FPGA_PHYS, qdev_get_gpio_in(cpu->pic, PXA2XX_PIC_GPIO_0)); /* setup keypad */ printf("map addr %p\n", &map); diff --git a/hw/mainstone.h b/hw/mainstone.h index 9618c06..35329f1 100644 --- a/hw/mainstone.h +++ b/hw/mainstone.h @@ -33,6 +33,6 @@ #define S1_IRQ 15 extern qemu_irq -*mst_irq_init(PXA2xxState *cpu, uint32_t base, int irq); +*mst_irq_init(uint32_t base, qemu_irq irq); #endif /* __MAINSTONE_H__ */ diff --git a/hw/mst_fpga.c b/hw/mst_fpga.c index 67b544f..3a49c84 100644 --- a/hw/mst_fpga.c +++ b/hw/mst_fpga.c @@ -9,7 +9,6 @@ */ #include "hw.h" #include "qdev.h" -#include "pxa.h" #include "mainstone.h" /* Mainstone FPGA for extern irqs */ @@ -110,7 +109,7 @@ mst_fpga_readb(void *opaque, target_phys_addr_t addr) return s->pcmcia1; default: printf("Mainstone - mst_fpga_readb: Bad register offset " - REG_FMT " \n", addr); + "0x" TARGET_FMT_plx " \n", addr); } return 0; } @@ -161,7 +160,7 @@ mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint32_t value) break; default: printf("Mainstone - mst_fpga_writeb: Bad register offset " - REG_FMT " \n", addr); + "0x" TARGET_FMT_plx " \n", addr); } } @@ -217,7 +216,7 @@ mst_fpga_load(QEMUFile *f, void *opaque, int version_id) return 0; } -qemu_irq *mst_irq_init(PXA2xxState *cpu, uint32_t base, int irq) +qemu_irq *mst_irq_init(uint32_t base, qemu_irq irq) { mst_irq_state *s; int iomemtype; @@ -226,7 +225,7 @@ qemu_irq *mst_irq_init(PXA2xxState *cpu, uint32_t base, int irq) s = (mst_irq_state *) qemu_mallocz(sizeof(mst_irq_state)); - s->parent = qdev_get_gpio_in(cpu->pic, irq); + s->parent = irq; /* alloc the external 16 irqs */ qi = qemu_allocate_irqs(mst_fpga_set_irq, s, MST_NUM_IRQS); diff --git a/hw/tc6393xb.c b/hw/tc6393xb.c index 0cadcde..ed49e94 100644 --- a/hw/tc6393xb.c +++ b/hw/tc6393xb.c @@ -8,7 +8,6 @@ * This code is licensed under the GNU GPL v2. */ #include "hw.h" -#include "pxa.h" #include "devices.h" #include "flash.h" #include "console.h" diff --git a/hw/zaurus.c b/hw/zaurus.c index 90fedc9..5d65793 100644 --- a/hw/zaurus.c +++ b/hw/zaurus.c @@ -16,7 +16,6 @@ * with this program; if not, see <http://www.gnu.org/licenses/>. */ #include "hw.h" -#include "pxa.h" #include "sharpsl.h" #include "sysbus.h" -- 1.7.2.3