diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2020-03-15 00:18:57 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-12 13:17:23 -0400 |
commit | 73d7aec0b1fdbd0681008b226e861127cd8e9ae6 (patch) | |
tree | be4b8766109bc62099a01aaa873d61d0ce84483d /examples/standalone/Makefile | |
parent | 808f13d8fc38959dc90de7243029141e758a5c0a (diff) | |
download | u-boot-73d7aec0b1fdbd0681008b226e861127cd8e9ae6.tar.gz |
net: smc911x: Drop the standalone EEPROM example
Drop the example, for two reasons. First, it is tapping directly into
the IO accessors of the SMC911x, while it should instead go through
the net device API. Second, this makes conversion of the SMC911x driver
to DM real hard.
Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Tom Rini <trini@konsulko.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'examples/standalone/Makefile')
-rw-r--r-- | examples/standalone/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile index 4a34813804..d4be0c7350 100644 --- a/examples/standalone/Makefile +++ b/examples/standalone/Makefile @@ -8,10 +8,6 @@ extra-$(CONFIG_SMC91111) += smc91111_eeprom extra-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2 extra-$(CONFIG_PPC) += sched -ifndef CONFIG_DM_ETH -extra-$(CONFIG_SMC911X) += smc911x_eeprom -endif - # # Some versions of make do not handle trailing white spaces properly; # leading to build failures. The problem was found with GNU Make 3.80. |