diff options
author | Peter Maydell | 2014-05-29 13:01:49 +0200 |
---|---|---|
committer | Michael Tokarev | 2014-06-10 17:39:34 +0200 |
commit | 831f4d27b6b7a5af89e82af5975de98bd19bd18c (patch) | |
tree | 9dfe3924a60b4360c806828979407218175e537a /hw/i386/pc.c | |
parent | slirp: Remove unused zero_ethaddr[] variable (diff) | |
download | qemu-831f4d27b6b7a5af89e82af5975de98bd19bd18c.tar.gz qemu-831f4d27b6b7a5af89e82af5975de98bd19bd18c.tar.xz qemu-831f4d27b6b7a5af89e82af5975de98bd19bd18c.zip |
hw/i386/pc.c: Remove unused parallel_io and parallel_irq variables
The variables parallel_io and parallel_irq are unused; delete them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/i386/pc.c')
-rw-r--r-- | hw/i386/pc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index e6369d5be6..32d163288c 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -922,9 +922,6 @@ static const int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 }; static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 }; -static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc }; -static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 }; - void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd) { static int nb_ne2k = 0; |