From a2b212fe5c32613e2beacc5ec3db4cdc0ab5a9e9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Tue, 21 Mar 2023 18:33:57 +0100 Subject: [PATCH] net: dsa: b53: mmap: add more 63xx SoCs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit BCM6318, BCM6362 and BCM63268 are SoCs with a B53 MMAP switch. Signed-off-by: Álvaro Fernández Rojas Reviewed-by: Florian Fainelli Reviewed-by: Simon Horman Signed-off-by: Jakub Kicinski --- drivers/net/dsa/b53/b53_mmap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/dsa/b53/b53_mmap.c b/drivers/net/dsa/b53/b53_mmap.c index e968322dfbf0b..f63aebd445e88 100644 --- a/drivers/net/dsa/b53/b53_mmap.c +++ b/drivers/net/dsa/b53/b53_mmap.c @@ -331,8 +331,11 @@ static void b53_mmap_shutdown(struct platform_device *pdev) static const struct of_device_id b53_mmap_of_table[] = { { .compatible = "brcm,bcm3384-switch" }, + { .compatible = "brcm,bcm6318-switch" }, { .compatible = "brcm,bcm6328-switch" }, + { .compatible = "brcm,bcm6362-switch" }, { .compatible = "brcm,bcm6368-switch" }, + { .compatible = "brcm,bcm63268-switch" }, { .compatible = "brcm,bcm63xx-switch" }, { /* sentinel */ }, }; -- 2.30.2