mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
783c3aace2
This backports some patches for the gswip switch driver. I copied them from this repository: https://github.com/xdarklight/linux/commits/lantiq-gswip-integration-20221022 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> [drop some patches which may break functionality at the moment] Signed-off-by: Martin Schiller <ms@dev.tdt.de>
25 lines
846 B
Diff
25 lines
846 B
Diff
From ef98b183d8fc7187a2efcc21c8f54f3cf061d556 Mon Sep 17 00:00:00 2001
|
|
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
Date: Tue, 17 May 2022 22:39:58 +0200
|
|
Subject: [PATCH 737/768] net: dsa: lantiq_gswip: Change literal 6 to ETH_ALEN
|
|
|
|
The addr variable in gswip_port_fdb_dump() stores a mac address. Use
|
|
ETH_ALEN to make this consistent across other drivers.
|
|
|
|
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
---
|
|
drivers/net/dsa/lantiq_gswip.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/dsa/lantiq_gswip.c
|
|
+++ b/drivers/net/dsa/lantiq_gswip.c
|
|
@@ -1383,7 +1383,7 @@ static int gswip_port_fdb_dump(struct ds
|
|
{
|
|
struct gswip_priv *priv = ds->priv;
|
|
struct gswip_pce_table_entry mac_bridge = {0,};
|
|
- unsigned char addr[6];
|
|
+ unsigned char addr[ETH_ALEN];
|
|
int i;
|
|
int err;
|
|
|