diff options
author | Shawn Guo | 2019-03-20 15:32:40 +0800 |
---|---|---|
committer | Tom Rini | 2019-04-23 17:57:24 -0400 |
commit | 1d5b5d2f8f9591149bedf9887c34e7eb5398ca53 (patch) | |
tree | 6aff8a52bdd53cb391f28d2f1fa37b688407b885 /drivers/net/Makefile | |
parent | f5e6c168c174cff74201ef58d99b27229ca0e4c2 (diff) |
net: add higmacv300 Ethernet driver for HiSilicon platform
It adds the driver for HIGMACV300 Ethernet controller found on HiSilicon
SoCs like Hi3798CV200. It's based on a downstream U-Boot driver, but
quite a lot of code gets rewritten and cleaned up to adopt driver model
and PHY API.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers/net/Makefile')
-rw-r--r-- | drivers/net/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 51be72b0aa8..8d02a378964 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile @@ -76,3 +76,4 @@ obj-$(CONFIG_SNI_AVE) += sni_ave.o obj-y += ti/ obj-$(CONFIG_MEDIATEK_ETH) += mtk_eth.o obj-y += mscc_eswitch/ +obj-$(CONFIG_HIGMACV300_ETH) += higmacv300.o |