forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kernel: bump 5.15 to 5.15.56 (coolsnowwolf#9816)
Signed-off-by: aakkll <[email protected]>
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-5.15 = .55 | ||
LINUX_KERNEL_HASH-5.15.55 = 1ef6bd508b6c3af3bef2d5b337e4477254dba284c79e329aa38f9763ae3bfdcc | ||
LINUX_VERSION-5.15 = .56 | ||
LINUX_KERNEL_HASH-5.15.56 = e9a6bb3437f1497b1c74841ebf70d5b96f915d6ac767b5ba3d8d820dd89b8223 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ Signed-off-by: David S. Miller <[email protected]> | |
|
||
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
@@ -837,20 +837,20 @@ static inline bool mtk_rx_get_desc(struc | ||
@@ -837,20 +837,20 @@ static void *mtk_max_lro_buf_alloc(gfp_t | ||
/* the qdma core needs scratch memory to be setup */ | ||
static int mtk_init_fq_dma(struct mtk_eth *eth) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,11 @@ Signed-off-by: Frank Wunderlich <[email protected]> | |
|
||
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
@@ -3384,6 +3384,7 @@ static const struct mtk_soc_data mt2701_ | ||
@@ -3675,6 +3675,7 @@ static const struct mtk_soc_data mt2701_ | ||
.hw_features = MTK_HW_FEATURES, | ||
.required_clks = MT7623_CLKS_BITMAP, | ||
.required_pctl = true, | ||
+ .offload_version = 2, | ||
}; | ||
|
||
static const struct mtk_soc_data mt7621_data = { | ||
.txrx = { | ||
.txd_size = sizeof(struct mtk_tx_dma), | ||
.rxd_size = sizeof(struct mtk_rx_dma), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,15 @@ Signed-off-by: René van Dorst <[email protected]> | |
|
||
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c | ||
@@ -2988,6 +2988,7 @@ static const struct net_device_ops mtk_n | ||
@@ -3290,6 +3290,7 @@ static const struct net_device_ops mtk_n | ||
|
||
static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np) | ||
{ | ||
+ const char *name = of_get_property(np, "label", NULL); | ||
const __be32 *_id = of_get_property(np, "reg", NULL); | ||
phy_interface_t phy_mode; | ||
struct phylink *phylink; | ||
@@ -3083,6 +3084,9 @@ static int mtk_add_mac(struct mtk_eth *e | ||
@@ -3385,6 +3386,9 @@ static int mtk_add_mac(struct mtk_eth *e | ||
else | ||
eth->netdev[id]->max_mtu = MTK_MAX_RX_LENGTH_2K - MTK_RX_ETH_HLEN; | ||
|
||
|