mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
kernel: bump 6.1 to 6.1.68 (#11708)
This commit is contained in:
parent
0d2cce288a
commit
a316972306
@ -1,2 +1,2 @@
|
|||||||
LINUX_VERSION-6.1 = .66
|
LINUX_VERSION-6.1 = .68
|
||||||
LINUX_KERNEL_HASH-6.1.66 = 419e62cd6c4239e6950b688db9e8753eb1e99c216dc3204f7932398a3fef1a0c
|
LINUX_KERNEL_HASH-6.1.68 = 365ff26a30e206de9b18489f45d38582a0a61b7c5919f8ab89295a47316784e1
|
||||||
|
@ -87,7 +87,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9661,6 +9661,9 @@ static int rtl8152_probe(struct usb_inte
|
@@ -9675,6 +9675,9 @@ static int rtl8152_probe(struct usb_inte
|
||||||
if (version == RTL_VER_UNKNOWN)
|
if (version == RTL_VER_UNKNOWN)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
if (!rtl_vendor_mode(intf))
|
if (!rtl_vendor_mode(intf))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
@@ -9861,43 +9864,35 @@ static void rtl8152_disconnect(struct us
|
@@ -9875,43 +9878,35 @@ static void rtl8152_disconnect(struct us
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,7 +164,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -9917,7 +9912,61 @@ static struct usb_driver rtl8152_driver
|
@@ -9931,7 +9926,61 @@ static struct usb_driver rtl8152_driver
|
||||||
.disable_hub_initiated_lpm = 1,
|
.disable_hub_initiated_lpm = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9542,9 +9542,8 @@ static int rtl_fw_init(struct r8152 *tp)
|
@@ -9556,9 +9556,8 @@ static int rtl_fw_init(struct r8152 *tp)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
u32 ocp_data = 0;
|
u32 ocp_data = 0;
|
||||||
__le32 *tmp;
|
__le32 *tmp;
|
||||||
u8 version;
|
u8 version;
|
||||||
@@ -9614,10 +9613,19 @@ u8 rtl8152_get_version(struct usb_interf
|
@@ -9628,10 +9627,19 @@ u8 rtl8152_get_version(struct usb_interf
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
version = RTL_VER_UNKNOWN;
|
version = RTL_VER_UNKNOWN;
|
||||||
@ -49,7 +49,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
dev_dbg(&intf->dev, "Detected version 0x%04x\n", version);
|
dev_dbg(&intf->dev, "Detected version 0x%04x\n", version);
|
||||||
|
|
||||||
return version;
|
return version;
|
||||||
@@ -9917,6 +9925,12 @@ static int rtl8152_cfgselector_probe(str
|
@@ -9931,6 +9939,12 @@ static int rtl8152_cfgselector_probe(str
|
||||||
struct usb_host_config *c;
|
struct usb_host_config *c;
|
||||||
int i, num_configs;
|
int i, num_configs;
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -8274,43 +8274,6 @@ static bool rtl_check_vendor_ok(struct u
|
@@ -8288,43 +8288,6 @@ static bool rtl_check_vendor_ok(struct u
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,7 +60,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
static int rtl8152_pre_reset(struct usb_interface *intf)
|
static int rtl8152_pre_reset(struct usb_interface *intf)
|
||||||
{
|
{
|
||||||
struct r8152 *tp = usb_get_intfdata(intf);
|
struct r8152 *tp = usb_get_intfdata(intf);
|
||||||
@@ -9672,7 +9635,7 @@ static int rtl8152_probe(struct usb_inte
|
@@ -9686,7 +9649,7 @@ static int rtl8152_probe(struct usb_inte
|
||||||
if (intf->cur_altsetting->desc.bInterfaceClass != USB_CLASS_VENDOR_SPEC)
|
if (intf->cur_altsetting->desc.bInterfaceClass != USB_CLASS_VENDOR_SPEC)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9624,20 +9624,21 @@ static int rtl8152_probe(struct usb_inte
|
@@ -9638,20 +9638,21 @@ static int rtl8152_probe(struct usb_inte
|
||||||
const struct usb_device_id *id)
|
const struct usb_device_id *id)
|
||||||
{
|
{
|
||||||
struct usb_device *udev = interface_to_usbdev(intf);
|
struct usb_device *udev = interface_to_usbdev(intf);
|
||||||
|
@ -14,7 +14,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9925,6 +9925,7 @@ static struct usb_device_driver rtl8152_
|
@@ -9939,6 +9939,7 @@ static struct usb_device_driver rtl8152_
|
||||||
.probe = rtl8152_cfgselector_probe,
|
.probe = rtl8152_cfgselector_probe,
|
||||||
.id_table = rtl8152_table,
|
.id_table = rtl8152_table,
|
||||||
.generic_subclass = 1,
|
.generic_subclass = 1,
|
||||||
|
@ -15,7 +15,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -3984,29 +3984,10 @@ static void rtl_reset_bmu(struct r8152 *
|
@@ -3990,29 +3990,10 @@ static void rtl_reset_bmu(struct r8152 *
|
||||||
/* Clear the bp to stop the firmware before loading a new one */
|
/* Clear the bp to stop the firmware before loading a new one */
|
||||||
static void rtl_clear_bp(struct r8152 *tp, u16 type)
|
static void rtl_clear_bp(struct r8152 *tp, u16 type)
|
||||||
{
|
{
|
||||||
@ -48,7 +48,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
case RTL_VER_08:
|
case RTL_VER_08:
|
||||||
case RTL_VER_09:
|
case RTL_VER_09:
|
||||||
case RTL_VER_10:
|
case RTL_VER_10:
|
||||||
@@ -4014,32 +3995,31 @@ static void rtl_clear_bp(struct r8152 *t
|
@@ -4020,32 +4001,31 @@ static void rtl_clear_bp(struct r8152 *t
|
||||||
case RTL_VER_12:
|
case RTL_VER_12:
|
||||||
case RTL_VER_13:
|
case RTL_VER_13:
|
||||||
case RTL_VER_15:
|
case RTL_VER_15:
|
||||||
@ -100,7 +100,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
/* wait 3 ms to make sure the firmware is stopped */
|
/* wait 3 ms to make sure the firmware is stopped */
|
||||||
usleep_range(3000, 6000);
|
usleep_range(3000, 6000);
|
||||||
@@ -5016,10 +4996,9 @@ static void rtl8152_fw_phy_nc_apply(stru
|
@@ -5022,10 +5002,9 @@ static void rtl8152_fw_phy_nc_apply(stru
|
||||||
|
|
||||||
static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac)
|
static void rtl8152_fw_mac_apply(struct r8152 *tp, struct fw_mac *mac)
|
||||||
{
|
{
|
||||||
@ -112,7 +112,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
switch (__le32_to_cpu(mac->blk_hdr.type)) {
|
switch (__le32_to_cpu(mac->blk_hdr.type)) {
|
||||||
case RTL_FW_PLA:
|
case RTL_FW_PLA:
|
||||||
@@ -5061,12 +5040,8 @@ static void rtl8152_fw_mac_apply(struct
|
@@ -5067,12 +5046,8 @@ static void rtl8152_fw_mac_apply(struct
|
||||||
ocp_write_word(tp, type, __le16_to_cpu(mac->bp_ba_addr),
|
ocp_write_word(tp, type, __le16_to_cpu(mac->bp_ba_addr),
|
||||||
__le16_to_cpu(mac->bp_ba_value));
|
__le16_to_cpu(mac->bp_ba_value));
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9770,8 +9770,7 @@ static int rtl8152_probe(struct usb_inte
|
@@ -9784,8 +9784,7 @@ static int rtl8152_probe(struct usb_inte
|
||||||
|
|
||||||
usb_set_intfdata(intf, tp);
|
usb_set_intfdata(intf, tp);
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|||||||
extern u8 rtl8152_get_version(struct usb_interface *intf);
|
extern u8 rtl8152_get_version(struct usb_interface *intf);
|
||||||
--- a/drivers/net/usb/r8152.c
|
--- a/drivers/net/usb/r8152.c
|
||||||
+++ b/drivers/net/usb/r8152.c
|
+++ b/drivers/net/usb/r8152.c
|
||||||
@@ -9846,6 +9846,7 @@ static const struct usb_device_id rtl815
|
@@ -9860,6 +9860,7 @@ static const struct usb_device_id rtl815
|
||||||
{ USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) },
|
{ USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) },
|
||||||
{ USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) },
|
{ USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) },
|
||||||
{ USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) },
|
{ USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) },
|
||||||
|
@ -1,447 +0,0 @@
|
|||||||
From 715f67f33af45ce2cc3a5b1ef133cc8c8e7787b0 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Douglas Anderson <dianders@chromium.org>
|
|
||||||
Date: Fri, 20 Oct 2023 14:06:58 -0700
|
|
||||||
Subject: [PATCH] r8152: Rename RTL8152_UNPLUG to RTL8152_INACCESSIBLE
|
|
||||||
|
|
||||||
Whenever the RTL8152_UNPLUG is set that just tells the driver that all
|
|
||||||
accesses will fail and we should just immediately bail. A future patch
|
|
||||||
will use this same concept at a time when the driver hasn't actually
|
|
||||||
been unplugged but is about to be reset. Rename the flag in
|
|
||||||
preparation for the future patch.
|
|
||||||
|
|
||||||
This is a no-op change and just a search and replace.
|
|
||||||
|
|
||||||
Signed-off-by: Douglas Anderson <dianders@chromium.org>
|
|
||||||
Reviewed-by: Grant Grundler <grundler@chromium.org>
|
|
||||||
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
||||||
---
|
|
||||||
drivers/net/usb/r8152.c | 96 ++++++++++++++++++++---------------------
|
|
||||||
1 file changed, 48 insertions(+), 48 deletions(-)
|
|
||||||
|
|
||||||
--- a/drivers/net/usb/r8152.c
|
|
||||||
+++ b/drivers/net/usb/r8152.c
|
|
||||||
@@ -763,7 +763,7 @@ enum rtl_register_content {
|
|
||||||
|
|
||||||
/* rtl8152 flags */
|
|
||||||
enum rtl8152_flags {
|
|
||||||
- RTL8152_UNPLUG = 0,
|
|
||||||
+ RTL8152_INACCESSIBLE = 0,
|
|
||||||
RTL8152_SET_RX_MODE,
|
|
||||||
WORK_ENABLE,
|
|
||||||
RTL8152_LINK_CHG,
|
|
||||||
@@ -1244,7 +1244,7 @@ int set_registers(struct r8152 *tp, u16
|
|
||||||
static void rtl_set_unplug(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
if (tp->udev->state == USB_STATE_NOTATTACHED) {
|
|
||||||
- set_bit(RTL8152_UNPLUG, &tp->flags);
|
|
||||||
+ set_bit(RTL8152_INACCESSIBLE, &tp->flags);
|
|
||||||
smp_mb__after_atomic();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1255,7 +1255,7 @@ static int generic_ocp_read(struct r8152
|
|
||||||
u16 limit = 64;
|
|
||||||
int ret = 0;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
/* both size and indix must be 4 bytes align */
|
|
||||||
@@ -1299,7 +1299,7 @@ static int generic_ocp_write(struct r815
|
|
||||||
u16 byteen_start, byteen_end, byen;
|
|
||||||
u16 limit = 512;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
/* both size and indix must be 4 bytes align */
|
|
||||||
@@ -1536,7 +1536,7 @@ static int read_mii_word(struct net_devi
|
|
||||||
struct r8152 *tp = netdev_priv(netdev);
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
if (phy_id != R8152_PHY_ID)
|
|
||||||
@@ -1552,7 +1552,7 @@ void write_mii_word(struct net_device *n
|
|
||||||
{
|
|
||||||
struct r8152 *tp = netdev_priv(netdev);
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (phy_id != R8152_PHY_ID)
|
|
||||||
@@ -1757,7 +1757,7 @@ static void read_bulk_callback(struct ur
|
|
||||||
if (!tp)
|
|
||||||
return;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!test_bit(WORK_ENABLE, &tp->flags))
|
|
||||||
@@ -1849,7 +1849,7 @@ static void write_bulk_callback(struct u
|
|
||||||
if (!test_bit(WORK_ENABLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!skb_queue_empty(&tp->tx_queue))
|
|
||||||
@@ -1870,7 +1870,7 @@ static void intr_callback(struct urb *ur
|
|
||||||
if (!test_bit(WORK_ENABLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
switch (status) {
|
|
||||||
@@ -2614,7 +2614,7 @@ static void bottom_half(struct tasklet_s
|
|
||||||
{
|
|
||||||
struct r8152 *tp = from_tasklet(tp, t, tx_tl);
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (!test_bit(WORK_ENABLE, &tp->flags))
|
|
||||||
@@ -2657,7 +2657,7 @@ int r8152_submit_rx(struct r8152 *tp, st
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
/* The rx would be stopped, so skip submitting */
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags) ||
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags) ||
|
|
||||||
!test_bit(WORK_ENABLE, &tp->flags) || !netif_carrier_ok(tp->netdev))
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
@@ -3057,7 +3057,7 @@ static int rtl_enable(struct r8152 *tp)
|
|
||||||
|
|
||||||
static int rtl8152_enable(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
set_tx_qlen(tp);
|
|
||||||
@@ -3144,7 +3144,7 @@ static int rtl8153_enable(struct r8152 *
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
set_tx_qlen(tp);
|
|
||||||
@@ -3176,7 +3176,7 @@ static void rtl_disable(struct r8152 *tp
|
|
||||||
u32 ocp_data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
@@ -3630,7 +3630,7 @@ static u16 r8153_phy_status(struct r8152
|
|
||||||
}
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -3662,7 +3662,7 @@ static void r8153b_ups_en(struct r8152 *
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < 500; i++) {
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
|
|
||||||
AUTOLOAD_DONE)
|
|
||||||
@@ -3704,7 +3704,7 @@ static void r8153c_ups_en(struct r8152 *
|
|
||||||
int i;
|
|
||||||
|
|
||||||
for (i = 0; i < 500; i++) {
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
if (ocp_read_word(tp, MCU_TYPE_PLA, PLA_BOOT_CTRL) &
|
|
||||||
AUTOLOAD_DONE)
|
|
||||||
@@ -4049,8 +4049,8 @@ static int rtl_phy_patch_request(struct
|
|
||||||
for (i = 0; wait && i < 5000; i++) {
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
- break;
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
+ return -ENODEV;
|
|
||||||
|
|
||||||
usleep_range(1000, 2000);
|
|
||||||
ocp_data = ocp_reg_read(tp, OCP_PHY_PATCH_STAT);
|
|
||||||
@@ -6008,7 +6008,7 @@ static int rtl8156_enable(struct r8152 *
|
|
||||||
u32 ocp_data;
|
|
||||||
u16 speed;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
r8156_fc_parameter(tp);
|
|
||||||
@@ -6066,7 +6066,7 @@ static int rtl8156b_enable(struct r8152
|
|
||||||
u32 ocp_data;
|
|
||||||
u16 speed;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
set_tx_qlen(tp);
|
|
||||||
@@ -6252,7 +6252,7 @@ out:
|
|
||||||
|
|
||||||
static void rtl8152_up(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8152_aldps_en(tp, false);
|
|
||||||
@@ -6262,7 +6262,7 @@ static void rtl8152_up(struct r8152 *tp)
|
|
||||||
|
|
||||||
static void rtl8152_down(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
@@ -6277,7 +6277,7 @@ static void rtl8153_up(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153_u1u2en(tp, false);
|
|
||||||
@@ -6317,7 +6317,7 @@ static void rtl8153_down(struct r8152 *t
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
@@ -6338,7 +6338,7 @@ static void rtl8153b_up(struct r8152 *tp
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_u1u2en(tp, false);
|
|
||||||
@@ -6362,7 +6362,7 @@ static void rtl8153b_down(struct r8152 *
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
@@ -6399,7 +6399,7 @@ static void rtl8153c_up(struct r8152 *tp
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_u1u2en(tp, false);
|
|
||||||
@@ -6480,7 +6480,7 @@ static void rtl8156_up(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_u1u2en(tp, false);
|
|
||||||
@@ -6553,7 +6553,7 @@ static void rtl8156_down(struct r8152 *t
|
|
||||||
{
|
|
||||||
u32 ocp_data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
@@ -6691,7 +6691,7 @@ static void rtl_work_func_t(struct work_
|
|
||||||
/* If the device is unplugged or !netif_running(), the workqueue
|
|
||||||
* doesn't need to wake the device, and could return directly.
|
|
||||||
*/
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags) || !netif_running(tp->netdev))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags) || !netif_running(tp->netdev))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (usb_autopm_get_interface(tp->intf) < 0)
|
|
||||||
@@ -6730,7 +6730,7 @@ static void rtl_hw_phy_work_func_t(struc
|
|
||||||
{
|
|
||||||
struct r8152 *tp = container_of(work, struct r8152, hw_phy_work.work);
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (usb_autopm_get_interface(tp->intf) < 0)
|
|
||||||
@@ -6857,7 +6857,7 @@ static int rtl8152_close(struct net_devi
|
|
||||||
netif_stop_queue(netdev);
|
|
||||||
|
|
||||||
res = usb_autopm_get_interface(tp->intf);
|
|
||||||
- if (res < 0 || test_bit(RTL8152_UNPLUG, &tp->flags)) {
|
|
||||||
+ if (res < 0 || test_bit(RTL8152_INACCESSIBLE, &tp->flags)) {
|
|
||||||
rtl_drop_queued_tx(tp);
|
|
||||||
rtl_stop_rx(tp);
|
|
||||||
} else {
|
|
||||||
@@ -6890,7 +6890,7 @@ static void r8152b_init(struct r8152 *tp
|
|
||||||
u32 ocp_data;
|
|
||||||
u16 data;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
data = r8152_mdio_read(tp, MII_BMCR);
|
|
||||||
@@ -6934,7 +6934,7 @@ static void r8153_init(struct r8152 *tp)
|
|
||||||
u16 data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153_u1u2en(tp, false);
|
|
||||||
@@ -6945,7 +6945,7 @@ static void r8153_init(struct r8152 *tp)
|
|
||||||
break;
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -7074,7 +7074,7 @@ static void r8153b_init(struct r8152 *tp
|
|
||||||
u16 data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_u1u2en(tp, false);
|
|
||||||
@@ -7085,7 +7085,7 @@ static void r8153b_init(struct r8152 *tp
|
|
||||||
break;
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -7156,7 +7156,7 @@ static void r8153c_init(struct r8152 *tp
|
|
||||||
u16 data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_u1u2en(tp, false);
|
|
||||||
@@ -7176,7 +7176,7 @@ static void r8153c_init(struct r8152 *tp
|
|
||||||
break;
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -8005,7 +8005,7 @@ static void r8156_init(struct r8152 *tp)
|
|
||||||
u16 data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_ECM_OP);
|
|
||||||
@@ -8026,7 +8026,7 @@ static void r8156_init(struct r8152 *tp)
|
|
||||||
break;
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -8101,7 +8101,7 @@ static void r8156b_init(struct r8152 *tp
|
|
||||||
u16 data;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
ocp_data = ocp_read_byte(tp, MCU_TYPE_USB, USB_ECM_OP);
|
|
||||||
@@ -8135,7 +8135,7 @@ static void r8156b_init(struct r8152 *tp
|
|
||||||
break;
|
|
||||||
|
|
||||||
msleep(20);
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -9164,7 +9164,7 @@ static int rtl8152_ioctl(struct net_devi
|
|
||||||
struct mii_ioctl_data *data = if_mii(rq);
|
|
||||||
int res;
|
|
||||||
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return -ENODEV;
|
|
||||||
|
|
||||||
res = usb_autopm_get_interface(tp->intf);
|
|
||||||
@@ -9266,7 +9266,7 @@ static const struct net_device_ops rtl81
|
|
||||||
|
|
||||||
static void rtl8152_unload(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (tp->version != RTL_VER_01)
|
|
||||||
@@ -9275,7 +9275,7 @@ static void rtl8152_unload(struct r8152
|
|
||||||
|
|
||||||
static void rtl8153_unload(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153_power_cut_en(tp, false);
|
|
||||||
@@ -9283,7 +9283,7 @@ static void rtl8153_unload(struct r8152
|
|
||||||
|
|
||||||
static void rtl8153b_unload(struct r8152 *tp)
|
|
||||||
{
|
|
||||||
- if (test_bit(RTL8152_UNPLUG, &tp->flags))
|
|
||||||
+ if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
|
||||||
return;
|
|
||||||
|
|
||||||
r8153b_power_cut_en(tp, false);
|
|
@ -232,7 +232,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
|
static int generic_ocp_read(struct r8152 *tp, u16 index, u16 size,
|
||||||
@@ -8261,7 +8355,7 @@ static int rtl8152_pre_reset(struct usb_
|
@@ -8275,7 +8369,7 @@ static int rtl8152_pre_reset(struct usb_
|
||||||
struct r8152 *tp = usb_get_intfdata(intf);
|
struct r8152 *tp = usb_get_intfdata(intf);
|
||||||
struct net_device *netdev;
|
struct net_device *netdev;
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
netdev = tp->netdev;
|
netdev = tp->netdev;
|
||||||
@@ -8276,7 +8370,9 @@ static int rtl8152_pre_reset(struct usb_
|
@@ -8290,7 +8384,9 @@ static int rtl8152_pre_reset(struct usb_
|
||||||
napi_disable(&tp->napi);
|
napi_disable(&tp->napi);
|
||||||
if (netif_carrier_ok(netdev)) {
|
if (netif_carrier_ok(netdev)) {
|
||||||
mutex_lock(&tp->control);
|
mutex_lock(&tp->control);
|
||||||
@ -251,7 +251,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
mutex_unlock(&tp->control);
|
mutex_unlock(&tp->control);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -8289,9 +8385,11 @@ static int rtl8152_post_reset(struct usb
|
@@ -8303,9 +8399,11 @@ static int rtl8152_post_reset(struct usb
|
||||||
struct net_device *netdev;
|
struct net_device *netdev;
|
||||||
struct sockaddr sa;
|
struct sockaddr sa;
|
||||||
|
|
||||||
@ -264,7 +264,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
/* reset the MAC address in case of policy change */
|
/* reset the MAC address in case of policy change */
|
||||||
if (determine_ethernet_addr(tp, &sa) >= 0) {
|
if (determine_ethernet_addr(tp, &sa) >= 0) {
|
||||||
rtnl_lock();
|
rtnl_lock();
|
||||||
@@ -9493,17 +9591,29 @@ static u8 __rtl_get_hw_ver(struct usb_de
|
@@ -9507,17 +9605,29 @@ static u8 __rtl_get_hw_ver(struct usb_de
|
||||||
__le32 *tmp;
|
__le32 *tmp;
|
||||||
u8 version;
|
u8 version;
|
||||||
int ret;
|
int ret;
|
||||||
@ -300,7 +300,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
|
|
||||||
kfree(tmp);
|
kfree(tmp);
|
||||||
|
|
||||||
@@ -9602,25 +9712,14 @@ static bool rtl8152_supports_lenovo_macp
|
@@ -9616,25 +9726,14 @@ static bool rtl8152_supports_lenovo_macp
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -328,7 +328,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
usb_reset_device(udev);
|
usb_reset_device(udev);
|
||||||
netdev = alloc_etherdev(sizeof(struct r8152));
|
netdev = alloc_etherdev(sizeof(struct r8152));
|
||||||
if (!netdev) {
|
if (!netdev) {
|
||||||
@@ -9783,10 +9882,20 @@ static int rtl8152_probe(struct usb_inte
|
@@ -9797,10 +9896,20 @@ static int rtl8152_probe(struct usb_inte
|
||||||
else
|
else
|
||||||
device_set_wakeup_enable(&udev->dev, false);
|
device_set_wakeup_enable(&udev->dev, false);
|
||||||
|
|
||||||
@ -349,7 +349,7 @@ Signed-off-by: David S. Miller <davem@davemloft.net>
|
|||||||
out1:
|
out1:
|
||||||
tasklet_kill(&tp->tx_tl);
|
tasklet_kill(&tp->tx_tl);
|
||||||
cancel_delayed_work_sync(&tp->hw_phy_work);
|
cancel_delayed_work_sync(&tp->hw_phy_work);
|
||||||
@@ -9795,10 +9904,46 @@ out1:
|
@@ -9809,10 +9918,46 @@ out1:
|
||||||
rtl8152_release_firmware(tp);
|
rtl8152_release_firmware(tp);
|
||||||
usb_set_intfdata(intf, NULL);
|
usb_set_intfdata(intf, NULL);
|
||||||
out:
|
out:
|
||||||
|
@ -22,7 +22,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
|||||||
#include <linux/crc32.h>
|
#include <linux/crc32.h>
|
||||||
#include <linux/if_vlan.h>
|
#include <linux/if_vlan.h>
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
@@ -7020,6 +7021,22 @@ static void rtl_tally_reset(struct r8152
|
@@ -7034,6 +7035,22 @@ static void rtl_tally_reset(struct r8152
|
||||||
ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
|
ocp_write_word(tp, MCU_TYPE_PLA, PLA_RSTTALLY, ocp_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
|||||||
static void r8152b_init(struct r8152 *tp)
|
static void r8152b_init(struct r8152 *tp)
|
||||||
{
|
{
|
||||||
u32 ocp_data;
|
u32 ocp_data;
|
||||||
@@ -7061,6 +7078,8 @@ static void r8152b_init(struct r8152 *tp
|
@@ -7075,6 +7092,8 @@ static void r8152b_init(struct r8152 *tp
|
||||||
ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
|
ocp_data = ocp_read_word(tp, MCU_TYPE_USB, USB_USB_CTRL);
|
||||||
ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
|
ocp_data &= ~(RX_AGG_DISABLE | RX_ZERO_EN);
|
||||||
ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
|
ocp_write_word(tp, MCU_TYPE_USB, USB_USB_CTRL, ocp_data);
|
||||||
@ -54,7 +54,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void r8153_init(struct r8152 *tp)
|
static void r8153_init(struct r8152 *tp)
|
||||||
@@ -7201,6 +7220,8 @@ static void r8153_init(struct r8152 *tp)
|
@@ -7215,6 +7234,8 @@ static void r8153_init(struct r8152 *tp)
|
||||||
tp->coalesce = COALESCE_SLOW;
|
tp->coalesce = COALESCE_SLOW;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -63,7 +63,7 @@ Signed-off-by: David Bauer <mail@david-bauer.net>
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void r8153b_init(struct r8152 *tp)
|
static void r8153b_init(struct r8152 *tp)
|
||||||
@@ -7283,6 +7304,8 @@ static void r8153b_init(struct r8152 *tp
|
@@ -7297,6 +7318,8 @@ static void r8153b_init(struct r8152 *tp
|
||||||
rtl_tally_reset(tp);
|
rtl_tally_reset(tp);
|
||||||
|
|
||||||
tp->coalesce = 15000; /* 15 us */
|
tp->coalesce = 15000; /* 15 us */
|
||||||
|
@ -129,7 +129,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
|
|||||||
{
|
{
|
||||||
--- a/drivers/gpio/gpiolib-sysfs.c
|
--- a/drivers/gpio/gpiolib-sysfs.c
|
||||||
+++ b/drivers/gpio/gpiolib-sysfs.c
|
+++ b/drivers/gpio/gpiolib-sysfs.c
|
||||||
@@ -544,7 +544,7 @@ static struct class gpio_class = {
|
@@ -547,7 +547,7 @@ static struct class gpio_class = {
|
||||||
*
|
*
|
||||||
* Returns zero on success, else an error.
|
* Returns zero on success, else an error.
|
||||||
*/
|
*/
|
||||||
@ -138,7 +138,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
|
|||||||
{
|
{
|
||||||
struct gpio_chip *chip;
|
struct gpio_chip *chip;
|
||||||
struct gpio_device *gdev;
|
struct gpio_device *gdev;
|
||||||
@@ -606,6 +606,8 @@ int gpiod_export(struct gpio_desc *desc,
|
@@ -609,6 +609,8 @@ int gpiod_export(struct gpio_desc *desc,
|
||||||
offset = gpio_chip_hwgpio(desc);
|
offset = gpio_chip_hwgpio(desc);
|
||||||
if (chip->names && chip->names[offset])
|
if (chip->names && chip->names[offset])
|
||||||
ioname = chip->names[offset];
|
ioname = chip->names[offset];
|
||||||
@ -147,7 +147,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
|
|||||||
|
|
||||||
dev = device_create_with_groups(&gpio_class, &gdev->dev,
|
dev = device_create_with_groups(&gpio_class, &gdev->dev,
|
||||||
MKDEV(0, 0), data, gpio_groups,
|
MKDEV(0, 0), data, gpio_groups,
|
||||||
@@ -627,6 +629,12 @@ err_unlock:
|
@@ -630,6 +632,12 @@ err_unlock:
|
||||||
gpiod_dbg(desc, "%s: status %d\n", __func__, status);
|
gpiod_dbg(desc, "%s: status %d\n", __func__, status);
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ Signed-off-by: Felix Fietkau <nbd@nbd.name>
|
|||||||
|
|
||||||
--- a/arch/mips/kernel/process.c
|
--- a/arch/mips/kernel/process.c
|
||||||
+++ b/arch/mips/kernel/process.c
|
+++ b/arch/mips/kernel/process.c
|
||||||
@@ -394,6 +394,8 @@ static inline int is_sp_move_ins(union m
|
@@ -395,6 +395,8 @@ static inline int is_sp_move_ins(union m
|
||||||
|
|
||||||
if (ip->i_format.opcode == addiu_op ||
|
if (ip->i_format.opcode == addiu_op ||
|
||||||
ip->i_format.opcode == daddiu_op) {
|
ip->i_format.opcode == daddiu_op) {
|
||||||
|
@ -9,7 +9,7 @@ Acked-by: Rob Landley <rob@landley.net>
|
|||||||
---
|
---
|
||||||
--- a/arch/mips/Kconfig
|
--- a/arch/mips/Kconfig
|
||||||
+++ b/arch/mips/Kconfig
|
+++ b/arch/mips/Kconfig
|
||||||
@@ -1034,9 +1034,6 @@ config FW_ARC
|
@@ -1035,9 +1035,6 @@ config FW_ARC
|
||||||
config ARCH_MAY_HAVE_PC_FDC
|
config ARCH_MAY_HAVE_PC_FDC
|
||||||
bool
|
bool
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ Acked-by: Rob Landley <rob@landley.net>
|
|||||||
config CEVT_BCM1480
|
config CEVT_BCM1480
|
||||||
bool
|
bool
|
||||||
|
|
||||||
@@ -3091,6 +3088,18 @@ choice
|
@@ -3093,6 +3090,18 @@ choice
|
||||||
bool "Extend builtin kernel arguments with bootloader arguments"
|
bool "Extend builtin kernel arguments with bootloader arguments"
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ Subject: [PATCH] r8169: add LED configuration from OF
|
|||||||
TxDescStartAddrLow = 0x20,
|
TxDescStartAddrLow = 0x20,
|
||||||
TxDescStartAddrHigh = 0x24,
|
TxDescStartAddrHigh = 0x24,
|
||||||
TxHDescStartAddrLow = 0x28,
|
TxHDescStartAddrLow = 0x28,
|
||||||
@@ -5174,6 +5176,22 @@ static bool rtl_aspm_is_safe(struct rtl8
|
@@ -5179,6 +5181,22 @@ static bool rtl_aspm_is_safe(struct rtl8
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ Subject: [PATCH] r8169: add LED configuration from OF
|
|||||||
static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||||
{
|
{
|
||||||
struct rtl8169_private *tp;
|
struct rtl8169_private *tp;
|
||||||
@@ -5342,6 +5360,7 @@ static int rtl_init_one(struct pci_dev *
|
@@ -5347,6 +5365,7 @@ static int rtl_init_one(struct pci_dev *
|
||||||
if (!tp->counters)
|
if (!tp->counters)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ Signed-off-by: wevsty <ty@wevs.org>
|
|||||||
reg = <0x0 0xff100000 0x0 0x1000>;
|
reg = <0x0 0xff100000 0x0 0x1000>;
|
||||||
--- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
--- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
+++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi
|
||||||
@@ -2043,6 +2043,16 @@
|
@@ -2045,6 +2045,16 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -557,7 +557,7 @@ Signed-off-by: hmz007 <hmz007@gmail.com>
|
|||||||
|
|
||||||
data->regs = devm_platform_ioremap_resource(pdev, 0);
|
data->regs = devm_platform_ioremap_resource(pdev, 0);
|
||||||
if (IS_ERR(data->regs))
|
if (IS_ERR(data->regs))
|
||||||
@@ -202,21 +202,95 @@ static int rockchip_dfi_probe(struct pla
|
@@ -202,21 +582,95 @@ static int rockchip_dfi_probe(struct pla
|
||||||
if (IS_ERR(data->regmap_pmu))
|
if (IS_ERR(data->regmap_pmu))
|
||||||
return PTR_ERR(data->regmap_pmu);
|
return PTR_ERR(data->regmap_pmu);
|
||||||
|
|
||||||
|
@ -81,7 +81,7 @@ and performance for all other cases.
|
|||||||
|
|
||||||
--- a/net/ipv4/tcp_input.c
|
--- a/net/ipv4/tcp_input.c
|
||||||
+++ b/net/ipv4/tcp_input.c
|
+++ b/net/ipv4/tcp_input.c
|
||||||
@@ -5403,6 +5403,7 @@ static bool tcp_prune_ofo_queue(struct s
|
@@ -5407,6 +5407,7 @@ static bool tcp_prune_ofo_queue(struct s
|
||||||
static int tcp_prune_queue(struct sock *sk)
|
static int tcp_prune_queue(struct sock *sk)
|
||||||
{
|
{
|
||||||
struct tcp_sock *tp = tcp_sk(sk);
|
struct tcp_sock *tp = tcp_sk(sk);
|
||||||
@ -89,7 +89,7 @@ and performance for all other cases.
|
|||||||
|
|
||||||
NET_INC_STATS(sock_net(sk), LINUX_MIB_PRUNECALLED);
|
NET_INC_STATS(sock_net(sk), LINUX_MIB_PRUNECALLED);
|
||||||
|
|
||||||
@@ -5414,6 +5415,39 @@ static int tcp_prune_queue(struct sock *
|
@@ -5418,6 +5419,39 @@ static int tcp_prune_queue(struct sock *
|
||||||
if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
|
if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -129,7 +129,7 @@ and performance for all other cases.
|
|||||||
tcp_collapse_ofo_queue(sk);
|
tcp_collapse_ofo_queue(sk);
|
||||||
if (!skb_queue_empty(&sk->sk_receive_queue))
|
if (!skb_queue_empty(&sk->sk_receive_queue))
|
||||||
tcp_collapse(sk, &sk->sk_receive_queue, NULL,
|
tcp_collapse(sk, &sk->sk_receive_queue, NULL,
|
||||||
@@ -5432,6 +5466,8 @@ static int tcp_prune_queue(struct sock *
|
@@ -5436,6 +5470,8 @@ static int tcp_prune_queue(struct sock *
|
||||||
if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
|
if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user