diff options
author | Laurent Vivier <laurent@vivier.eu> | 2017-12-20 13:14:06 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2017-12-21 20:11:28 +0100 |
commit | 77cb0f5aafc8e6d0c6d3c339f381c9b7921648e0 (patch) | |
tree | f29172263065caacecd55e739fbdeb9f59ce0c9d /hw/input/Makefile.objs | |
parent | 23bafd75cd979ad3a21af10273c5a0c5d67d068b (diff) | |
download | qemu-77cb0f5aafc8e6d0c6d3c339f381c9b7921648e0.zip qemu-77cb0f5aafc8e6d0c6d3c339f381c9b7921648e0.tar.gz qemu-77cb0f5aafc8e6d0c6d3c339f381c9b7921648e0.tar.bz2 |
Split adb.c into adb.c, adb-mouse.c and adb-kbd.c
It makes the code clearer to separate the bus implementation
from the devices one.
Replace ADB_DPRINTF() with trace events (and adding new ones in adb-kbd.c).
Some minor changes to make checkpatch.pl happy.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Message-Id: <20171220121406.24056-1-laurent@vivier.eu>
Diffstat (limited to 'hw/input/Makefile.objs')
-rw-r--r-- | hw/input/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/input/Makefile.objs b/hw/input/Makefile.objs index 636f794..77e53e6 100644 --- a/hw/input/Makefile.objs +++ b/hw/input/Makefile.objs @@ -1,4 +1,4 @@ -common-obj-$(CONFIG_ADB) += adb.o +common-obj-$(CONFIG_ADB) += adb.o adb-mouse.o adb-kbd.o common-obj-y += hid.o common-obj-$(CONFIG_LM832X) += lm832x.o common-obj-$(CONFIG_PCKBD) += pckbd.o |