diff options
author | Philip Richard Oberfichtner | 2023-10-31 08:38:44 +0100 |
---|---|---|
committer | Heiko Schocher | 2023-10-31 09:08:36 +0100 |
commit | 31f4ee4b13d974ba4b973211eeb57db70bc5ea77 (patch) | |
tree | 08731c3db436ad7da4c93be788dde8acf8bdfcfe /drivers/bootcount/Makefile | |
parent | 35e8007ef382cb1f0523a9106fbc8d4d4404cb27 (diff) |
bootcount: Remove legacy I2C driver
The legacy I2C bootcounter will hereby be removed and eventually
be replaced by a driver model implementation in the follow-up commit.
The legacy driver has the following drawbacks:
- It's not adhering to the driver model
- Settings are grabbed from Kconfig rather than device tree
- i2c_{read,write} are being used instead of dm_i2c_{read,write}
Signed-off-by: Philip Richard Oberfichtner <pro@denx.de>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/bootcount/Makefile')
-rw-r--r-- | drivers/bootcount/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bootcount/Makefile b/drivers/bootcount/Makefile index b65959a384b..d6d2389c16a 100644 --- a/drivers/bootcount/Makefile +++ b/drivers/bootcount/Makefile @@ -6,7 +6,6 @@ obj-$(CONFIG_BOOTCOUNT_AT91) += bootcount_at91.o obj-$(CONFIG_BOOTCOUNT_AM33XX) += bootcount_davinci.o obj-$(CONFIG_BOOTCOUNT_RAM) += bootcount_ram.o obj-$(CONFIG_BOOTCOUNT_ENV) += bootcount_env.o -obj-$(CONFIG_BOOTCOUNT_I2C) += bootcount_i2c.o obj-$(CONFIG_BOOTCOUNT_EXT) += bootcount_ext.o obj-$(CONFIG_BOOTCOUNT_AM33XX_NVMEM) += bootcount_nvmem.o |