diff options
author | Evgeny Voevodin <e.voevodin@samsung.com> | 2012-01-17 02:08:19 +0100 |
---|---|---|
committer | Andrzej Zaborowski <andrew.zaborowski@intel.com> | 2012-01-17 02:08:19 +0100 |
commit | ea0e68411e3276060999e2e7db569e3009fc3b81 (patch) | |
tree | 8e70c17567b4501b51994622a8958017f13faf55 /hw/sysbus.h | |
parent | 753a97c6b40c9ade45aae2e96ed44268aa7007e6 (diff) | |
download | qemu-ea0e68411e3276060999e2e7db569e3009fc3b81.tar.gz qemu-ea0e68411e3276060999e2e7db569e3009fc3b81.tar.bz2 qemu-ea0e68411e3276060999e2e7db569e3009fc3b81.zip |
hw/sysbus.h: Increase maximum number of device IRQs.
Samsung exynos4210 Interrupt Combiner needs 512 IRQ sources.
Signed-off-by: Evgeny Voevodin <e.voevodin@samsung.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
Diffstat (limited to 'hw/sysbus.h')
-rw-r--r-- | hw/sysbus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sysbus.h b/hw/sysbus.h index 899756bf7f..7b8ca236bf 100644 --- a/hw/sysbus.h +++ b/hw/sysbus.h @@ -8,7 +8,7 @@ #define QDEV_MAX_MMIO 32 #define QDEV_MAX_PIO 32 -#define QDEV_MAX_IRQ 256 +#define QDEV_MAX_IRQ 512 typedef struct SysBusDevice SysBusDevice; |