diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-12-25 07:39:24 -0500 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2008-12-25 07:39:15 -0500 |
commit | 349f1b671a4b2612c1355612bedadc81f86d26f1 (patch) | |
tree | 9422b3ac6becc77296baa0b31b7052489b792006 | |
parent | 2b1a61f0a8c714c96277bf16a823a84bafa1397d (diff) |
[S390] cpu topology: remove dead code
Interrupts haven't been implemented. So remove the dead code.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | arch/s390/kernel/topology.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/arch/s390/kernel/topology.c b/arch/s390/kernel/topology.c index 71e6f56bfead..b3aac53fd6dc 100644 --- a/arch/s390/kernel/topology.c +++ b/arch/s390/kernel/topology.c | |||
@@ -63,7 +63,6 @@ static void topology_work_fn(struct work_struct *work); | |||
63 | static struct tl_info *tl_info; | 63 | static struct tl_info *tl_info; |
64 | static struct core_info core_info; | 64 | static struct core_info core_info; |
65 | static int machine_has_topology; | 65 | static int machine_has_topology; |
66 | static int machine_has_topology_irq; | ||
67 | static struct timer_list topology_timer; | 66 | static struct timer_list topology_timer; |
68 | static void set_topology_timer(void); | 67 | static void set_topology_timer(void); |
69 | static DECLARE_WORK(topology_work, topology_work_fn); | 68 | static DECLARE_WORK(topology_work, topology_work_fn); |
@@ -259,11 +258,6 @@ static void set_topology_timer(void) | |||
259 | add_timer(&topology_timer); | 258 | add_timer(&topology_timer); |
260 | } | 259 | } |
261 | 260 | ||
262 | static void topology_interrupt(__u16 code) | ||
263 | { | ||
264 | schedule_work(&topology_work); | ||
265 | } | ||
266 | |||
267 | static int __init early_parse_topology(char *p) | 261 | static int __init early_parse_topology(char *p) |
268 | { | 262 | { |
269 | if (strncmp(p, "on", 2)) | 263 | if (strncmp(p, "on", 2)) |
@@ -283,14 +277,7 @@ static int __init init_topology_update(void) | |||
283 | goto out; | 277 | goto out; |
284 | } | 278 | } |
285 | init_timer_deferrable(&topology_timer); | 279 | init_timer_deferrable(&topology_timer); |
286 | if (machine_has_topology_irq) { | 280 | set_topology_timer(); |
287 | rc = register_external_interrupt(0x2005, topology_interrupt); | ||
288 | if (rc) | ||
289 | goto out; | ||
290 | ctl_set_bit(0, 8); | ||
291 | } | ||
292 | else | ||
293 | set_topology_timer(); | ||
294 | out: | 281 | out: |
295 | update_cpu_core_map(); | 282 | update_cpu_core_map(); |
296 | return rc; | 283 | return rc; |
@@ -311,9 +298,6 @@ void __init s390_init_cpu_topology(void) | |||
311 | return; | 298 | return; |
312 | machine_has_topology = 1; | 299 | machine_has_topology = 1; |
313 | 300 | ||
314 | if (facility_bits & (1ULL << 51)) | ||
315 | machine_has_topology_irq = 1; | ||
316 | |||
317 | tl_info = alloc_bootmem_pages(PAGE_SIZE); | 301 | tl_info = alloc_bootmem_pages(PAGE_SIZE); |
318 | info = tl_info; | 302 | info = tl_info; |
319 | stsi(info, 15, 1, 2); | 303 | stsi(info, 15, 1, 2); |
@@ -337,5 +321,4 @@ void __init s390_init_cpu_topology(void) | |||
337 | return; | 321 | return; |
338 | error: | 322 | error: |
339 | machine_has_topology = 0; | 323 | machine_has_topology = 0; |
340 | machine_has_topology_irq = 0; | ||
341 | } | 324 | } |