diff options
author | Linas Vepstas <linas@linas.org> | 2005-11-03 19:54:29 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-09 23:29:33 -0500 |
commit | 9fb40eb883ad2d22ad6975b4323cb76e018fa280 (patch) | |
tree | c8f1f1a8e87b65cf69a01842eeb1efd52588d8e4 /arch/powerpc/platforms/pseries/eeh.c | |
parent | f751f84164bec4f38037b221a194c54d96c73d06 (diff) |
[PATCH] powerpc: Remove duplicate code
234-eeh-find-pe.patch
The find_device_pe() routine is duplicated in two files. Remove one of
the two copies, declare the other extern.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
(cherry picked from 48408e708282d4d0269136ff27ea5acbd9410b5a commit)
Diffstat (limited to 'arch/powerpc/platforms/pseries/eeh.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/eeh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c index be9814075254..d9662688c8b6 100644 --- a/arch/powerpc/platforms/pseries/eeh.c +++ b/arch/powerpc/platforms/pseries/eeh.c | |||
@@ -172,7 +172,7 @@ static inline unsigned long eeh_token_to_phys(unsigned long token) | |||
172 | /** | 172 | /** |
173 | * Return the "partitionable endpoint" (pe) under which this device lies | 173 | * Return the "partitionable endpoint" (pe) under which this device lies |
174 | */ | 174 | */ |
175 | static struct device_node * find_device_pe(struct device_node *dn) | 175 | struct device_node * find_device_pe(struct device_node *dn) |
176 | { | 176 | { |
177 | while ((dn->parent) && PCI_DN(dn->parent) && | 177 | while ((dn->parent) && PCI_DN(dn->parent) && |
178 | (PCI_DN(dn->parent)->eeh_mode & EEH_MODE_SUPPORTED)) { | 178 | (PCI_DN(dn->parent)->eeh_mode & EEH_MODE_SUPPORTED)) { |