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>
27 lines
861 B
Diff
27 lines
861 B
Diff
From 00b5121435ccd4ce54f79179dd9ee3e2610d7dcf Mon Sep 17 00:00:00 2001
|
|
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
Date: Fri, 14 Oct 2022 16:31:57 +0200
|
|
Subject: [PATCH 743/768] net: dsa: lantiq_gswip: Improve error message in
|
|
gswip_port_fdb()
|
|
|
|
Print the port which is not found to be part of a bridge so it's easier
|
|
to investigate the underlying issue.
|
|
|
|
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
|
|
---
|
|
drivers/net/dsa/lantiq_gswip.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/dsa/lantiq_gswip.c
|
|
+++ b/drivers/net/dsa/lantiq_gswip.c
|
|
@@ -1349,7 +1349,8 @@ static int gswip_port_fdb(struct dsa_swi
|
|
}
|
|
|
|
if (fid == -1) {
|
|
- dev_err(priv->dev, "Port not part of a bridge\n");
|
|
+ dev_err(priv->dev,
|
|
+ "Port %d is not known to be part of bridge\n", port);
|
|
return -EINVAL;
|
|
}
|
|
|