[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog
From: |
Guenter Roeck |
Subject: |
Re: [PATCH 1/8] hw: Move i.MX watchdog driver to hw/watchdog |
Date: |
Sat, 14 Mar 2020 15:11:51 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 |
Hi Philippe,
On 3/14/20 2:46 PM, Philippe Mathieu-Daudé wrote:
[ ... ]
> Corrected hunk:
>
> -- >8 --
> diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
> index e5a876c8d1..c662d5f1e0 100644
> --- a/hw/arm/Kconfig
> +++ b/hw/arm/Kconfig
> @@ -373,6 +373,7 @@ config FSL_IMX6
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select SDHCI
>
> config ASPEED_SOC
> @@ -410,6 +411,7 @@ config FSL_IMX7
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select PCI_EXPRESS_DESIGNWARE
> select SDHCI
> select UNIMP
> @@ -423,6 +425,7 @@ config FSL_IMX6UL
> select IMX
> select IMX_FEC
> select IMX_I2C
> + select WDT_IMX2
> select SDHCI
> select UNIMP
>
Done. I also fixed
>> +common-obj-$(CONFIG_WDT_IMX) += wdt_imx2.o
to
>> +common-obj-$(CONFIG_WDT_IMX2) += wdt_imx2.o
in patch 1/8 (that had slipped to patch 2/8).
Thanks a lot for the feedback,
Guenter
- [PATCH 0/8] hw/arm: Implement i.MX watchdog support, Guenter Roeck, 2020/03/14
- [PATCH 2/8] hw/watchdog: Implement full i.MX watchdog support, Guenter Roeck, 2020/03/14
- [PATCH 3/8] hw/arm/fsl-imx25: Wire up watchdog, Guenter Roeck, 2020/03/14
- [PATCH 4/8] hw/arm/fsl-imx31: Wire up watchdog, Guenter Roeck, 2020/03/14
- [PATCH 5/8] hw/arm/fsl-imx6: Connect watchdog interrupts, Guenter Roeck, 2020/03/14
- [PATCH 7/8] hw/arm/fsl-imx7: Instantiate various unimplemented devices, Guenter Roeck, 2020/03/14
- [PATCH 6/8] hw/arm/fsl-imx6ul: Connect watchdog interrupts, Guenter Roeck, 2020/03/14