All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] The of_register_spi_devices() was not called after registering the spi master.
@ 2008-09-17 17:06 stefano.babic-jEVQdWr+paajF4gvJNWmbkB+6BGkLq7r
       [not found] ` <1221671160-602-1-git-send-email-stefano.babic-jEVQdWr+paajF4gvJNWmbkB+6BGkLq7r@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: stefano.babic-jEVQdWr+paajF4gvJNWmbkB+6BGkLq7r @ 2008-09-17 17:06 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f; +Cc: Stefano Babic

From: Stefano Babic <sbabic-ynQEQJNshbs@public.gmane.org>

Signed-off-by: Stefano Babic <sbabic-ynQEQJNshbs@public.gmane.org>
---
 drivers/spi/mpc52xx_psc_spi.c |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/mpc52xx_psc_spi.c b/drivers/spi/mpc52xx_psc_spi.c
index 25eda71..41f9921 100644
--- a/drivers/spi/mpc52xx_psc_spi.c
+++ b/drivers/spi/mpc52xx_psc_spi.c
@@ -18,6 +18,7 @@
 
 #if defined(CONFIG_PPC_MERGE)
 #include <linux/of_platform.h>
+#include <linux/of_spi.h>
 #else
 #include <linux/platform_device.h>
 #endif
@@ -439,8 +440,10 @@ static int __init mpc52xx_psc_spi_do_probe(struct device *dev, u32 regaddr,
 	}
 
 	ret = spi_register_master(master);
-	if (ret < 0)
+	if (ret < 0) {
+		dev_err(dev,"spi_register_master FAILED\n");
 		goto unreg_master;
+	}
 
 	return ret;
 
@@ -524,6 +527,8 @@ static int __init mpc52xx_psc_spi_of_probe(struct of_device *op,
 	const u32 *regaddr_p;
 	u64 regaddr64, size64;
 	s16 id = -1;
+	struct spi_master *master;
+	int ret;
 
 	regaddr_p = of_get_address(op->node, 0, &size64, NULL);
 	if (!regaddr_p) {
@@ -545,8 +550,13 @@ static int __init mpc52xx_psc_spi_of_probe(struct of_device *op,
 		id = *psc_nump + 1;
 	}
 
-	return mpc52xx_psc_spi_do_probe(&op->dev, (u32)regaddr64, (u32)size64,
+	ret=mpc52xx_psc_spi_do_probe(&op->dev, (u32)regaddr64, (u32)size64,
 					irq_of_parse_and_map(op->node, 0), id);
+	if (ret==0)  {
+		master=spi_busnum_to_master(id);
+		of_register_spi_devices(master, op->node);
+	}
+	return(ret);
 }
 
 static int __exit mpc52xx_psc_spi_of_remove(struct of_device *op)
-- 
1.5.4.3


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

^ permalink raw reply related	[flat|nested] 10+ messages in thread
* [PATCH] The of_register_spi_devices() was not called after registering the spi master.
@ 2008-09-26  8:24 sbabic-ynQEQJNshbs
       [not found] ` <1222417480-3144-1-git-send-email-sbabic-ynQEQJNshbs@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: sbabic-ynQEQJNshbs @ 2008-09-26  8:24 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f; +Cc: Stefano Babic

The of_register_spi_devices() was not called after registering the spi master.
It should be called for powerpc platforms which use the device tree to
populate the SPI bus.
    
Signed-off-by: Stefano Babic <sbabic-ynQEQJNshbs@public.gmane.org>



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH] The of_register_spi_devices() was not called after registering the spi master.
@ 2008-09-26  8:41 Stefano Babic
  0 siblings, 0 replies; 10+ messages in thread
From: Stefano Babic @ 2008-09-26  8:41 UTC (permalink / raw)
  To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

The of_register_spi_devices() was not called after registering the spi
master.
It should be called for powerpc platforms which use the device tree to
populate the SPI bus.

Signed-off-by: Stefano Babic <sbabic-ynQEQJNshbs@public.gmane.org>



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

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

end of thread, other threads:[~2008-09-29 22:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-17 17:06 [PATCH] The of_register_spi_devices() was not called after registering the spi master stefano.babic-jEVQdWr+paajF4gvJNWmbkB+6BGkLq7r
     [not found] ` <1221671160-602-1-git-send-email-stefano.babic-jEVQdWr+paajF4gvJNWmbkB+6BGkLq7r@public.gmane.org>
2008-09-25  4:59   ` David Brownell
     [not found]     ` <200809242159.53970.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
2008-09-25  5:33       ` Grant Likely
     [not found]         ` <20080925053305.GA8254-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
2008-09-25  5:57           ` David Brownell
  -- strict thread matches above, loose matches on Subject: below --
2008-09-26  8:24 sbabic-ynQEQJNshbs
     [not found] ` <1222417480-3144-1-git-send-email-sbabic-ynQEQJNshbs@public.gmane.org>
2008-09-26  8:24   ` sbabic-ynQEQJNshbs
     [not found]     ` <1222417480-3144-2-git-send-email-sbabic-ynQEQJNshbs@public.gmane.org>
2008-09-29 14:12       ` Grant Likely
     [not found]         ` <20080929141230.GA9448-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
2008-09-29 15:04           ` Stefano Babic
     [not found]             ` <48E0EE8F.1000200-ynQEQJNshbs@public.gmane.org>
2008-09-29 22:39               ` Grant Likely
2008-09-26  8:41 Stefano Babic

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.