From: Philippe Mathieu-Daudé Date: Tue, 22 Oct 2019 15:50:37 +0000 (+0100) Subject: hw/sd/sdhci: Add a comment to distinct the i.MX eSDHC functions X-Git-Tag: v4.2.0-rc0~45^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=efadc8182d978cbc4dfd5aab08798a23d40ecd8a;p=thirdparty%2Fqemu.git hw/sd/sdhci: Add a comment to distinct the i.MX eSDHC functions This file keeps the various QDev blocks separated by comments. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Cleber Rosa Message-id: 20191005154748.21718-3-f4bug@amsat.org Signed-off-by: Peter Maydell --- diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c index e08ec3e3985..82ec5c1b4a4 100644 --- a/hw/sd/sdhci.c +++ b/hw/sd/sdhci.c @@ -1532,6 +1532,8 @@ static const TypeInfo sdhci_bus_info = { .class_init = sdhci_bus_class_init, }; +/* --- qdev i.MX eSDHC --- */ + static uint64_t usdhc_read(void *opaque, hwaddr offset, unsigned size) { SDHCIState *s = SYSBUS_SDHCI(opaque); @@ -1734,7 +1736,6 @@ usdhc_write(void *opaque, hwaddr offset, uint64_t val, unsigned size) } } - static const MemoryRegionOps usdhc_mmio_ops = { .read = usdhc_read, .write = usdhc_write,