diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-08 16:12:13 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-12 11:11:42 +0100 |
| commit | 7f2a5272ff3893ef412c093aae66b7ed34ab3dfc (patch) | |
| tree | 9b2183178aa8a90ddec258bbf2b2dcb0f87a702e /hw/arm/fsl-imx6.c | |
| parent | 003d35ad6c612d13ebf0a78f828b0c3ee4f44e3d (diff) | |
| download | focaccia-qemu-7f2a5272ff3893ef412c093aae66b7ed34ab3dfc.tar.gz focaccia-qemu-7f2a5272ff3893ef412c093aae66b7ed34ab3dfc.zip | |
hw/sd/sdhci: Remove need for SDHCI_VENDOR_IMX definition
All instances of TYPE_IMX_USDHC set vendor=SDHCI_VENDOR_IMX. No need to special-case it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Bernhard Beschow <shentey@gmail.com> Message-Id: <20250308213640.13138-3-philmd@linaro.org>
Diffstat (limited to 'hw/arm/fsl-imx6.c')
| -rw-r--r-- | hw/arm/fsl-imx6.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/arm/fsl-imx6.c b/hw/arm/fsl-imx6.c index dc86338b3a..a114dc0d63 100644 --- a/hw/arm/fsl-imx6.c +++ b/hw/arm/fsl-imx6.c @@ -327,8 +327,6 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp) &error_abort); object_property_set_uint(OBJECT(&s->esdhc[i]), "capareg", IMX6_ESDHC_CAPABILITIES, &error_abort); - object_property_set_uint(OBJECT(&s->esdhc[i]), "vendor", - SDHCI_VENDOR_IMX, &error_abort); if (!sysbus_realize(SYS_BUS_DEVICE(&s->esdhc[i]), errp)) { return; } |