[POWERPC] spi: Support non-QE processors
authorPeter Korsgaard <jacmet@sunsite.dk>
Sat, 6 Oct 2007 20:06:40 +0000 (22:06 +0200)
committerKumar Gala <galak@kernel.crashing.org>
Mon, 8 Oct 2007 14:05:30 +0000 (09:05 -0500)
On non-QE processors (mpc831x/mpc834x) the SPI clock is the SoC clock.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/sysdev/fsl_soc.c

index be5e0bd..3ace747 100644 (file)
@@ -1222,8 +1222,12 @@ int __init fsl_spi_init(struct spi_board_info *board_infos,
        unsigned int i;
        const u32 *sysclk;
 
+       /* SPI controller is either clocked from QE or SoC clock */
        np = of_find_node_by_type(NULL, "qe");
        if (!np)
+               np = of_find_node_by_type(NULL, "soc");
+
+       if (!np)
                return -ENODEV;
 
        sysclk = of_get_property(np, "bus-frequency", NULL);