From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thierry Reding Date: Tue, 16 Apr 2019 18:20:30 +0200 Subject: [U-Boot] [RESEND PATCH 2/2] net: rtl8169: Support RTL-8168h/8111h In-Reply-To: <20190416162030.13590-1-thierry.reding@gmail.com> References: <20190416162030.13590-1-thierry.reding@gmail.com> Message-ID: <20190416162030.13590-2-thierry.reding@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Thierry Reding This version of the RTL-8168 is present on some development boards and is compatible with this driver. Add support for identifying this version of the chip so that U-Boot won't complain about it being unknown. Signed-off-by: Thierry Reding --- drivers/net/rtl8169.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/rtl8169.c b/drivers/net/rtl8169.c index 27e27b34176b..bc052e72564b 100644 --- a/drivers/net/rtl8169.c +++ b/drivers/net/rtl8169.c @@ -257,6 +257,7 @@ static struct { {"RTL-8168/8111g", 0x4c, 0xff7e1880,}, {"RTL-8101e", 0x34, 0xff7e1880,}, {"RTL-8100e", 0x32, 0xff7e1880,}, + {"RTL-8168h/8111h", 0x54, 0xff7e1880,}, }; enum _DescStatusBit { -- 2.21.0