diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2018-03-08 23:39:34 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-03-12 16:12:48 +0100 |
| commit | 72d3d8f052a19abc455ddc88efef75c407ac7c8d (patch) | |
| tree | 68f668d46d499a7fc87d7b6c4b5400c80d5cbb98 /include/hw/isa/superio.h | |
| parent | 6f6695b13638b0a4bfd9f75c022a9a7c55fb0b51 (diff) | |
| download | focaccia-qemu-72d3d8f052a19abc455ddc88efef75c407ac7c8d.tar.gz focaccia-qemu-72d3d8f052a19abc455ddc88efef75c407ac7c8d.zip | |
hw/isa/superio: Add a keyboard/mouse controller (8042)
Since the PC87312 inherits this abstract model, we remove the I8042 instance in the PREP machine. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: David Gibson <david@gibson.dropbear.id.au> Message-Id: <20180308223946.26784-14-f4bug@amsat.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/isa/superio.h')
| -rw-r--r-- | include/hw/isa/superio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/isa/superio.h b/include/hw/isa/superio.h index e8007b9eee..2fc33bf3d3 100644 --- a/include/hw/isa/superio.h +++ b/include/hw/isa/superio.h @@ -30,6 +30,7 @@ typedef struct ISASuperIODevice { ISADevice *parallel[MAX_PARALLEL_PORTS]; ISADevice *serial[MAX_SERIAL_PORTS]; ISADevice *floppy; + ISADevice *kbc; } ISASuperIODevice; typedef struct ISASuperIOFuncs { |