aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinas Vepstas <linas@austin.ibm.com>2007-05-23 13:23:38 -0400
committerPaul Mackerras <paulus@samba.org>2007-06-14 08:29:55 -0400
commit42253a68a8e794a38ede33566083af8a80948f60 (patch)
tree4fa2089bab38edd2b7aa51eb2490e07fc470229c
parent858955bd572f0ca38b258e45c7dd743b9e44b04e (diff)
[POWERPC] Remove dead EEH code
Remove some dead code. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> ---- arch/powerpc/platforms/pseries/eeh.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r--arch/powerpc/platforms/pseries/eeh.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh.c b/arch/powerpc/platforms/pseries/eeh.c
index ff33c150535e..39f025e60835 100644
--- a/arch/powerpc/platforms/pseries/eeh.c
+++ b/arch/powerpc/platforms/pseries/eeh.c
@@ -117,7 +117,6 @@ static unsigned long no_cfg_addr;
117static unsigned long ignored_check; 117static unsigned long ignored_check;
118static unsigned long total_mmio_ffs; 118static unsigned long total_mmio_ffs;
119static unsigned long false_positives; 119static unsigned long false_positives;
120static unsigned long ignored_failures;
121static unsigned long slot_resets; 120static unsigned long slot_resets;
122 121
123#define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE) 122#define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
@@ -1221,11 +1220,10 @@ static int proc_eeh_show(struct seq_file *m, void *v)
1221 "check not wanted=%ld\n" 1220 "check not wanted=%ld\n"
1222 "eeh_total_mmio_ffs=%ld\n" 1221 "eeh_total_mmio_ffs=%ld\n"
1223 "eeh_false_positives=%ld\n" 1222 "eeh_false_positives=%ld\n"
1224 "eeh_ignored_failures=%ld\n"
1225 "eeh_slot_resets=%ld\n", 1223 "eeh_slot_resets=%ld\n",
1226 no_device, no_dn, no_cfg_addr, 1224 no_device, no_dn, no_cfg_addr,
1227 ignored_check, total_mmio_ffs, 1225 ignored_check, total_mmio_ffs,
1228 false_positives, ignored_failures, 1226 false_positives,
1229 slot_resets); 1227 slot_resets);
1230 } 1228 }
1231 1229