diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc64/kernel/pci_psycho.c | 4 | ||||
-rw-r--r-- | arch/sparc64/kernel/sbus.c | 4 | ||||
-rw-r--r-- | arch/sparc64/kernel/starfire.c | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/arch/sparc64/kernel/pci_psycho.c b/arch/sparc64/kernel/pci_psycho.c index 5b2261ebda6f..1cb63346f093 100644 --- a/arch/sparc64/kernel/pci_psycho.c +++ b/arch/sparc64/kernel/pci_psycho.c | |||
@@ -1171,9 +1171,7 @@ static void psycho_iommu_init(struct pci_controller_info *p) | |||
1171 | 1171 | ||
1172 | /* If necessary, hook us up for starfire IRQ translations. */ | 1172 | /* If necessary, hook us up for starfire IRQ translations. */ |
1173 | if (this_is_starfire) | 1173 | if (this_is_starfire) |
1174 | p->starfire_cookie = starfire_hookup(p->pbm_A.portid); | 1174 | starfire_hookup(p->pbm_A.portid); |
1175 | else | ||
1176 | p->starfire_cookie = NULL; | ||
1177 | } | 1175 | } |
1178 | 1176 | ||
1179 | #define PSYCHO_IRQ_RETRY 0x1a00UL | 1177 | #define PSYCHO_IRQ_RETRY 0x1a00UL |
diff --git a/arch/sparc64/kernel/sbus.c b/arch/sparc64/kernel/sbus.c index ac05e0f692ef..945222e66980 100644 --- a/arch/sparc64/kernel/sbus.c +++ b/arch/sparc64/kernel/sbus.c | |||
@@ -1221,9 +1221,7 @@ static void __init sbus_iommu_init(int __node, struct sbus_bus *sbus) | |||
1221 | 1221 | ||
1222 | /* Now some Xfire specific grot... */ | 1222 | /* Now some Xfire specific grot... */ |
1223 | if (this_is_starfire) | 1223 | if (this_is_starfire) |
1224 | sbus->starfire_cookie = starfire_hookup(sbus->portid); | 1224 | starfire_hookup(sbus->portid); |
1225 | else | ||
1226 | sbus->starfire_cookie = NULL; | ||
1227 | 1225 | ||
1228 | sysio_register_error_handlers(sbus); | 1226 | sysio_register_error_handlers(sbus); |
1229 | } | 1227 | } |
diff --git a/arch/sparc64/kernel/starfire.c b/arch/sparc64/kernel/starfire.c index ae859d40771e..b930fee7708a 100644 --- a/arch/sparc64/kernel/starfire.c +++ b/arch/sparc64/kernel/starfire.c | |||
@@ -54,7 +54,7 @@ struct starfire_irqinfo { | |||
54 | static struct starfire_irqinfo *sflist = NULL; | 54 | static struct starfire_irqinfo *sflist = NULL; |
55 | 55 | ||
56 | /* Beam me up Scott(McNeil)y... */ | 56 | /* Beam me up Scott(McNeil)y... */ |
57 | void *starfire_hookup(int upaid) | 57 | void starfire_hookup(int upaid) |
58 | { | 58 | { |
59 | struct starfire_irqinfo *p; | 59 | struct starfire_irqinfo *p; |
60 | unsigned long treg_base, hwmid, i; | 60 | unsigned long treg_base, hwmid, i; |
@@ -81,8 +81,6 @@ void *starfire_hookup(int upaid) | |||
81 | p->upaid = upaid; | 81 | p->upaid = upaid; |
82 | p->next = sflist; | 82 | p->next = sflist; |
83 | sflist = p; | 83 | sflist = p; |
84 | |||
85 | return (void *) p; | ||
86 | } | 84 | } |
87 | 85 | ||
88 | unsigned int starfire_translate(unsigned long imap, | 86 | unsigned int starfire_translate(unsigned long imap, |