All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] MAINTAINERS: Add Hao and Yilun as maintainers
@ 2021-09-28 15:02 Moritz Fischer
  2021-09-28 15:02 ` [PATCH 2/2] MAINTAINERS: Drop outdated FPGA Manager website Moritz Fischer
  2021-09-28 15:28 ` [PATCH 1/2] MAINTAINERS: Add Hao and Yilun as maintainers Greg Kroah-Hartman
  0 siblings, 2 replies; 12+ messages in thread
From: Moritz Fischer @ 2021-09-28 15:02 UTC (permalink / raw)
  To: linux-fpga; +Cc: moritzf, Moritz Fischer, Xu Yilun, Wu Hao, Greg Kroah-Hartman

Hao and Yilun have agreed to help out with maintenance.
Both have been active in the Linux FPGA community for a long time
and we need backups for vacation and load-balancing.

Cc: Xu Yilun <yilun.xu@intel.com>
Cc: Wu Hao <hao.wu@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Moritz Fischer <mdf@kernel.org>
---
 MAINTAINERS | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index eeb4c70b3d5b..2ec4c2a2458a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7337,6 +7337,8 @@ F:	include/uapi/linux/fpga-dfl.h
 
 FPGA MANAGER FRAMEWORK
 M:	Moritz Fischer <mdf@kernel.org>
+M:	Wu Hao <hao.wu@intel.com>
+M:	Xu Yilun <yilun.xu@intel.com>
 R:	Tom Rix <trix@redhat.com>
 L:	linux-fpga@vger.kernel.org
 S:	Maintained
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 12+ messages in thread
* [PATCH] fpga: ice40-spi: Add SPI device ID table
@ 2021-09-28 15:02 ` Moritz Fischer
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2021-09-27 13:44 UTC (permalink / raw)
  To: Moritz Fischer, Tom Rix; +Cc: linux-fpga, Mark Brown

Currently autoloading for SPI devices does not use the DT ID table, it uses
SPI modalises. Supporting OF modalises is going to be difficult if not
impractical, an attempt was made but has been reverted, so ensure that
module autoloading works for this driver by adding a SPI ID table.

Fixes: 96c8395e2166 ("spi: Revert modalias changes")
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 drivers/fpga/ice40-spi.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/fpga/ice40-spi.c b/drivers/fpga/ice40-spi.c
index 69dec5af23c3..029d3cdb918d 100644
--- a/drivers/fpga/ice40-spi.c
+++ b/drivers/fpga/ice40-spi.c
@@ -192,12 +192,19 @@ static const struct of_device_id ice40_fpga_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, ice40_fpga_of_match);
 
+static const struct spi_device_id ice40_fpga_spi_ids[] = {
+	{ .name = "ice40-fpga-mgr", },
+	{},
+};
+MODULE_DEVICE_TABLE(spi, ice40_fpga_spi_ids);
+
 static struct spi_driver ice40_fpga_driver = {
 	.probe = ice40_fpga_probe,
 	.driver = {
 		.name = "ice40spi",
 		.of_match_table = of_match_ptr(ice40_fpga_of_match),
 	},
+	.id_table = ice40_fpga_spi_ids,
 };
 
 module_spi_driver(ice40_fpga_driver);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-10-02 16:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-28 15:02 [PATCH 1/2] MAINTAINERS: Add Hao and Yilun as maintainers Moritz Fischer
2021-09-28 15:02 ` [PATCH 2/2] MAINTAINERS: Drop outdated FPGA Manager website Moritz Fischer
2021-10-02 14:49   ` Xu Yilun
2021-10-02 16:09     ` Moritz Fischer
2021-09-28 15:28 ` [PATCH 1/2] MAINTAINERS: Add Hao and Yilun as maintainers Greg Kroah-Hartman
2021-09-29  0:42   ` Xu Yilun
2021-09-29  1:04     ` Wu, Hao
2021-10-01  3:35       ` Moritz Fischer
  -- strict thread matches above, loose matches on Subject: below --
2021-09-27 13:44 [PATCH] fpga: ice40-spi: Add SPI device ID table Mark Brown
2021-09-28 15:02 ` Moritz Fischer
2021-09-27 21:03 ` Moritz Fischer
2021-09-28 15:05 ` Moritz Fischer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.