linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] firmware: arm_ffa: Ensure drivers provide a probe function
@ 2021-06-21 20:16 Uwe Kleine-König
  2021-06-21 20:16 ` [PATCH 2/2] firmware: arm_ffa: Simplify " Uwe Kleine-König
  2021-06-23 13:56 ` [PATCH 1/2] firmware: arm_ffa: Ensure drivers provide a " Sudeep Holla
  0 siblings, 2 replies; 3+ messages in thread
From: Uwe Kleine-König @ 2021-06-21 20:16 UTC (permalink / raw)
  To: Sudeep Holla; +Cc: Jens Wiklander, linux-arm-kernel, kernel

The bus probe callback calls the driver callback without further
checking. Better be safe than sorry and refuse registration of a driver
without a probe function to prevent a NULL pointer exception.

Fixes: e781858488b9 ("firmware: arm_ffa: Add initial FFA bus support for device enumeration")
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/firmware/arm_ffa/bus.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/firmware/arm_ffa/bus.c b/drivers/firmware/arm_ffa/bus.c
index 83166e02b191..d2cc24319626 100644
--- a/drivers/firmware/arm_ffa/bus.c
+++ b/drivers/firmware/arm_ffa/bus.c
@@ -99,6 +99,9 @@ int ffa_driver_register(struct ffa_driver *driver, struct module *owner,
 {
 	int ret;
 
+	if (!driver->probe)
+		return -EINVAL;
+
 	driver->driver.bus = &ffa_bus_type;
 	driver->driver.name = driver->name;
 	driver->driver.owner = owner;
-- 
2.30.2


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2021-06-23 13:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-21 20:16 [PATCH 1/2] firmware: arm_ffa: Ensure drivers provide a probe function Uwe Kleine-König
2021-06-21 20:16 ` [PATCH 2/2] firmware: arm_ffa: Simplify " Uwe Kleine-König
2021-06-23 13:56 ` [PATCH 1/2] firmware: arm_ffa: Ensure drivers provide a " Sudeep Holla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).