* [PATCH] spi: add coredevice_spi_driver macro as well
@ 2020-08-07 7:29 Ahmad Fatoum
2020-08-10 6:38 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2020-08-07 7:29 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
Some drivers would benefit from earlier probing, e.g. because they
provide regulators. Add a macro to make registration of such drivers
easier.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
include/spi/spi.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/spi/spi.h b/include/spi/spi.h
index 66e0500d04c0..c5efca1cc31c 100644
--- a/include/spi/spi.h
+++ b/include/spi/spi.h
@@ -515,6 +515,8 @@ static inline int spi_driver_register(struct driver_d *drv)
return register_driver(drv);
}
+#define coredevice_spi_driver(drv) \
+ register_driver_macro(coredevice,spi,drv)
#define device_spi_driver(drv) \
register_driver_macro(device,spi,drv)
--
2.28.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-08-10 6:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-07 7:29 [PATCH] spi: add coredevice_spi_driver macro as well Ahmad Fatoum
2020-08-10 6:38 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox