mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-06 13:58:53 +00:00
210c534ce2
This commit moves the patches for the r8152.c driver to the generic directory. Previously they were only available on the bcm27xx target. With these patches the Realtek RTL8153C, RTL8153D, RTL8156A and RTL8156B chips are supported on all targets by the kmod-usb-net-rtl8152 module. The RTL8156A and RTL8156B are the 2.5Gb/s Ethernet adapters. The patches have been tested on TP-Link UE300 (RTL8153A) and UNITEK 1313B (RTL8156B). Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From 38e44c7926512cff0b2809dc329de2a8e769e523 Mon Sep 17 00:00:00 2001
|
|
From: Hayes Wang <hayeswang@realtek.com>
|
|
Date: Fri, 19 Feb 2021 17:04:42 +0800
|
|
Subject: [PATCH] r8152: replace netif_err with dev_err
|
|
|
|
commit 156c3207611262266f0eea589ac3f00c5657320e upstream.
|
|
|
|
Some messages are before calling register_netdev(), so replace
|
|
netif_err() with dev_err().
|
|
|
|
Signed-off-by: Hayes Wang <hayeswang@realtek.com>
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/usb/r8152.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/net/usb/r8152.c
|
|
+++ b/drivers/net/usb/r8152.c
|
|
@@ -6594,7 +6594,7 @@ static int rtl_ops_init(struct r8152 *tp
|
|
|
|
default:
|
|
ret = -ENODEV;
|
|
- netif_err(tp, probe, tp->netdev, "Unknown Device\n");
|
|
+ dev_err(&tp->intf->dev, "Unknown Device\n");
|
|
break;
|
|
}
|
|
|
|
@@ -6851,7 +6851,7 @@ static int rtl8152_probe(struct usb_inte
|
|
|
|
ret = register_netdev(netdev);
|
|
if (ret != 0) {
|
|
- netif_err(tp, probe, netdev, "couldn't register the device\n");
|
|
+ dev_err(&intf->dev, "couldn't register the device\n");
|
|
goto out1;
|
|
}
|
|
|