diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-01-24 10:39:59 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-28 09:32:55 -0500 |
commit | a2dd70a11d4c9cb8a4e4bb41f53a9b430e08559b (patch) | |
tree | 0ecb6b3f6ed79c06db25299450a7ea1ef216ed5a /arch/powerpc/sysdev/fsl_soc.c | |
parent | f67be814ff8e862422739cb424ce8c4e6c142c28 (diff) |
[POWERPC] QE: get rid of most device_types and model
Now we're searching for "fsl,qe", "fsl,qe-muram", "fsl,qe-muram-data"
and "fsl,qe-ic".
Unfortunately it's still impossible to remove device_type = "qe"
from the existing device trees because older u-boots are looking for it.
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_soc.c')
-rw-r--r-- | arch/powerpc/sysdev/fsl_soc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index f2c0988a03b8..26f7d83c4be5 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
@@ -1276,7 +1276,10 @@ int __init fsl_spi_init(struct spi_board_info *board_infos, | |||
1276 | const u32 *sysclk; | 1276 | const u32 *sysclk; |
1277 | 1277 | ||
1278 | /* SPI controller is either clocked from QE or SoC clock */ | 1278 | /* SPI controller is either clocked from QE or SoC clock */ |
1279 | np = of_find_node_by_type(NULL, "qe"); | 1279 | np = of_find_compatible_node(NULL, NULL, "fsl,qe"); |
1280 | if (!np) | ||
1281 | np = of_find_node_by_type(NULL, "qe"); | ||
1282 | |||
1280 | if (!np) | 1283 | if (!np) |
1281 | np = of_find_node_by_type(NULL, "soc"); | 1284 | np = of_find_node_by_type(NULL, "soc"); |
1282 | 1285 | ||