2022-07-17 14:02:28

by Oleksij Rempel

[permalink] [raw]
Subject: [PATCH net v2 2/2] net: dsa: vitesse-vsc73xx: silent spi_device_id warnings

Add spi_device_id entries to silent SPI warnings.

Fixes: 5fa6863ba692 ("spi: Check we have a spi_device_id for each DT compatible")
Signed-off-by: Oleksij Rempel <[email protected]>
---
drivers/net/dsa/vitesse-vsc73xx-spi.c | 10 ++++++++++
1 file changed, 10 insertions(+)

diff --git a/drivers/net/dsa/vitesse-vsc73xx-spi.c b/drivers/net/dsa/vitesse-vsc73xx-spi.c
index 3110895358d8..97a92e6da60d 100644
--- a/drivers/net/dsa/vitesse-vsc73xx-spi.c
+++ b/drivers/net/dsa/vitesse-vsc73xx-spi.c
@@ -205,10 +205,20 @@ static const struct of_device_id vsc73xx_of_match[] = {
};
MODULE_DEVICE_TABLE(of, vsc73xx_of_match);

+static const struct spi_device_id vsc73xx_spi_ids[] = {
+ { "vsc7385" },
+ { "vsc7388" },
+ { "vsc7395" },
+ { "vsc7398" },
+ { },
+};
+MODULE_DEVICE_TABLE(spi, vsc73xx_spi_ids);
+
static struct spi_driver vsc73xx_spi_driver = {
.probe = vsc73xx_spi_probe,
.remove = vsc73xx_spi_remove,
.shutdown = vsc73xx_spi_shutdown,
+ .id_table = vsc73xx_spi_ids,
.driver = {
.name = "vsc73xx-spi",
.of_match_table = vsc73xx_of_match,
--
2.30.2


2022-07-17 14:04:32

by Vladimir Oltean

[permalink] [raw]
Subject: Re: [PATCH net v2 2/2] net: dsa: vitesse-vsc73xx: silent spi_device_id warnings

On Sun, Jul 17, 2022 at 03:58:31PM +0200, Oleksij Rempel wrote:
> Add spi_device_id entries to silent SPI warnings.
>
> Fixes: 5fa6863ba692 ("spi: Check we have a spi_device_id for each DT compatible")
> Signed-off-by: Oleksij Rempel <[email protected]>
> ---

Thanks!

Reviewed-by: Vladimir Oltean <[email protected]>