Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190228181710.2477-1-minyard@acm.org
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Eduardo Habkost <ehabkost@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Juan Quintela <quintela@redhat.com>, Andrew Jeffery <andrew@aj.id.au>, Igor Mammedov <imammedo@redhat.com>, Igor Mitsyanko <i.mitsyanko@gmail.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Peter Maydell <peter.maydell@linaro.org>, Richard Henderson <rth@twiddle.net>, "Cédric Le Goater" <clg@kaod.org>, Corey Minyard <cminyard@mvista.com>, Joel Stanley <joel@jms.id.au>, "Michael S. Tsirkin" <mst@redhat.com>, Peter Chubb <peter.chubb@nicta.com.au>
MAINTAINERS | 12 +
hw/acpi/piix4.c | 7 +
hw/arm/aspeed.c | 2 +-
hw/arm/pxa2xx.c | 2 +-
hw/arm/stellaris.c | 2 +-
hw/arm/tosa.c | 4 +-
hw/arm/z2.c | 2 +-
hw/audio/wm8750.c | 2 +-
hw/display/sii9022.c | 2 +-
hw/display/ssd0303.c | 4 +-
hw/gpio/max7310.c | 2 +-
hw/i2c/Makefile.objs | 2 +-
hw/i2c/aspeed_i2c.c | 9 +-
hw/i2c/core.c | 32 +--
hw/i2c/exynos4210_i2c.c | 8 +-
hw/i2c/i2c-ddc.c | 2 +-
hw/i2c/imx_i2c.c | 12 +-
hw/i2c/pm_smbus.c | 119 +++++++--
hw/i2c/smbus.c | 379 -----------------------------
hw/i2c/smbus_eeprom.c | 136 +++++++----
hw/i2c/smbus_ich9.c | 12 +-
hw/i2c/smbus_master.c | 165 +++++++++++++
hw/i2c/smbus_slave.c | 236 ++++++++++++++++++
hw/i386/pc_piix.c | 3 +-
hw/i386/pc_q35.c | 3 +-
hw/input/lm832x.c | 2 +-
hw/isa/vt82c686.c | 1 -
hw/mips/mips_fulong2e.c | 2 +-
hw/mips/mips_malta.c | 2 +-
hw/misc/pca9552.c | 2 +-
hw/misc/tmp105.c | 2 +-
hw/misc/tmp421.c | 2 +-
hw/nvram/eeprom_at24c.c | 4 +-
hw/ppc/sam460ex.c | 2 +-
hw/timer/ds1338.c | 2 +-
hw/timer/m41t80.c | 2 +-
hw/timer/twl92230.c | 2 +-
include/hw/boards.h | 1 +
include/hw/i2c/i2c.h | 7 +-
include/hw/i2c/pm_smbus.h | 17 ++
include/hw/i2c/smbus_eeprom.h | 35 +++
include/hw/i2c/{smbus.h => smbus_master.h} | 54 +---
include/hw/i2c/smbus_slave.h | 100 ++++++++
include/migration/vmstate.h | 3 +
44 files changed, 820 insertions(+), 581 deletions(-)
delete mode 100644 hw/i2c/smbus.c
create mode 100644 hw/i2c/smbus_master.c
create mode 100644 hw/i2c/smbus_slave.c
create mode 100644 include/hw/i2c/smbus_eeprom.h
rename include/hw/i2c/{smbus.h => smbus_master.h} (54%)
create mode 100644 include/hw/i2c/smbus_slave.h