lkml.org 
[lkml]   [2022]   [Sep]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 3/3] leds: spi-byte: silent no spi_device_id warning
Date
From: Wei Yongjun <weiyongjun1@huawei.com>

Add spi_device_id entries to silent following SPI warning:

SPI driver leds_spi_byte has no spi_device_id for ubnt,acb-spi-led

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
drivers/leds/leds-spi-byte.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/drivers/leds/leds-spi-byte.c b/drivers/leds/leds-spi-byte.c
index 2bc5c99daf51..9d23dc9e7639 100644
--- a/drivers/leds/leds-spi-byte.c
+++ b/drivers/leds/leds-spi-byte.c
@@ -137,9 +137,16 @@ static void spi_byte_remove(struct spi_device *spi)
mutex_destroy(&led->mutex);
}

+static const struct spi_device_id spi_byte_spi_ids[] = {
+ { "acb-spi-led", (kernel_ulong_t)&ubnt_acb_spi_led_cdef },
+ { },
+};
+MODULE_DEVICE_TABLE(spi, spi_byte_spi_ids);
+
static struct spi_driver spi_byte_driver = {
.probe = spi_byte_probe,
.remove = spi_byte_remove,
+ .id_table = spi_byte_spi_ids,
.driver = {
.name = KBUILD_MODNAME,
.of_match_table = spi_byte_dt_ids,
--
2.34.1
\
 
 \ /
  Last update: 2022-09-05 17:12    [W:0.034 / U:1.060 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site