diff options
author | Arnd Bergmann <arnd@arndb.de> | 2006-10-04 11:26:18 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-10-04 19:21:01 -0400 |
commit | 772920e594df25f2011ca49abd9c8b85c4820cdc (patch) | |
tree | a4b93255aafd6cfb21a55dc547e4c115e089ef09 | |
parent | cdcc89bb1c6e886a55fe00e2de3b9c65d41674c2 (diff) |
[POWERPC] spufs: remove support for ancient firmware
Any firmware that still uses the 'spc' nodes already
stopped running for other reasons, so let's get rid of this.
Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/cell/spu_base.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/powerpc/platforms/cell/spu_base.c b/arch/powerpc/platforms/cell/spu_base.c index bfbd0455d8a7..d4e4f0f683df 100644 --- a/arch/powerpc/platforms/cell/spu_base.c +++ b/arch/powerpc/platforms/cell/spu_base.c | |||
@@ -791,18 +791,6 @@ static int __init init_spu_base(void) | |||
791 | break; | 791 | break; |
792 | } | 792 | } |
793 | } | 793 | } |
794 | /* in some old firmware versions, the spe is called 'spc', so we | ||
795 | look for that as well */ | ||
796 | for (node = of_find_node_by_type(NULL, "spc"); | ||
797 | node; node = of_find_node_by_type(node, "spc")) { | ||
798 | ret = create_spu(node); | ||
799 | if (ret) { | ||
800 | printk(KERN_WARNING "%s: Error initializing %s\n", | ||
801 | __FUNCTION__, node->name); | ||
802 | cleanup_spu_base(); | ||
803 | break; | ||
804 | } | ||
805 | } | ||
806 | return ret; | 794 | return ret; |
807 | } | 795 | } |
808 | module_init(init_spu_base); | 796 | module_init(init_spu_base); |