mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [2/9] driver core fixes: device_register() retval check in platform.c
@ 2006-09-22  9:36 Cornelia Huck
  2006-09-23 21:10 ` Russell King
  0 siblings, 1 reply; 3+ messages in thread
From: Cornelia Huck @ 2006-09-22  9:36 UTC (permalink / raw)
  To: Greg K-H; +Cc: linux-kernel

From: Cornelia Huck <cornelia.huck@de.ibm.com>

Check the return value of device_register() in platform_bus_init().

Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>

---
 drivers/base/platform.c |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

--- linux-2.6-CH.orig/drivers/base/platform.c
+++ linux-2.6-CH/drivers/base/platform.c
@@ -563,8 +563,15 @@ EXPORT_SYMBOL_GPL(platform_bus_type);
 
 int __init platform_bus_init(void)
 {
-	device_register(&platform_bus);
-	return bus_register(&platform_bus_type);
+	int error;
+
+	error = device_register(&platform_bus);
+	if (error)
+		return error;
+	error =  bus_register(&platform_bus_type);
+	if (error)
+		device_unregister(&platform_bus);
+	return error;
 }
 
 #ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK

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

end of thread, other threads:[~2006-09-25 14:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-22  9:36 [2/9] driver core fixes: device_register() retval check in platform.c Cornelia Huck
2006-09-23 21:10 ` Russell King
2006-09-25 14:58   ` Cornelia Huck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®