diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-09-20 16:03:44 +0200 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2013-11-22 16:50:53 -0600 |
commit | 65a6691ed3e3396c6aa8b8ca39b9e2631f37a974 (patch) | |
tree | 2acd2289cc5432b8bff7c9a911e79b45d386f60b | |
parent | 7a36b9c1acb43c6be82b05c21cba1d0f14712d8c (diff) | |
download | u-boot-imx-65a6691ed3e3396c6aa8b8ca39b9e2631f37a974.zip u-boot-imx-65a6691ed3e3396c6aa8b8ca39b9e2631f37a974.tar.gz u-boot-imx-65a6691ed3e3396c6aa8b8ca39b9e2631f37a974.tar.bz2 |
net: rtl8169: Add support for RTL8168evl/8111evl
This chip is compatible with other RTL8168 chips and can be found on the
NVIDIA Cardhu and Beaver boards.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Patch: 276475
-rw-r--r-- | drivers/net/rtl8169.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/rtl8169.c b/drivers/net/rtl8169.c index 9dc10a5..290c988 100644 --- a/drivers/net/rtl8169.c +++ b/drivers/net/rtl8169.c @@ -246,6 +246,7 @@ static struct { {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,}, {"RTL-8168b/8111sb", 0x30, 0xff7e1880,}, {"RTL-8168b/8111sb", 0x38, 0xff7e1880,}, + {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,}, {"RTL-8101e", 0x34, 0xff7e1880,}, {"RTL-8100e", 0x32, 0xff7e1880,}, }; |