aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-s390
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2008-04-17 01:46:29 -0400
committerHeiko Carstens <heiko.carstens@de.ibm.com>2008-04-17 01:47:07 -0400
commit1a5debaaace41f1e91014332e6eedde4499e5638 (patch)
tree7ad49a67c4a9fd91429ee3b5edb894c9709a528c /include/asm-s390
parent1749a81d629b1295b38071914728cc2e72066f4d (diff)
[S390] lowcore: Change type of lowcores softirq_pending to __u32.
As noted by akpm: > kernel/time/tick-sched.c: In function 'tick_nohz_stop_sched_tick': > kernel/time/tick-sched.c:229: warning: format '%02x' expects type 'unsigned int', but argument 2 has type '__u64' > > I don't think the architecture's local_softirq_pending() should return u64. > This is the sort of thing which should be consistent across architectures. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'include/asm-s390')
-rw-r--r--include/asm-s390/lowcore.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-s390/lowcore.h b/include/asm-s390/lowcore.h
index 6baa51b8683..007c8a4941b 100644
--- a/include/asm-s390/lowcore.h
+++ b/include/asm-s390/lowcore.h
@@ -370,7 +370,8 @@ struct _lowcore
370 __u64 ext_call_fast; /* 0xdc8 */ 370 __u64 ext_call_fast; /* 0xdc8 */
371 __u64 percpu_offset; /* 0xdd0 */ 371 __u64 percpu_offset; /* 0xdd0 */
372 __u64 current_task; /* 0xdd8 */ 372 __u64 current_task; /* 0xdd8 */
373 __u64 softirq_pending; /* 0xde0 */ 373 __u32 softirq_pending; /* 0xde0 */
374 __u32 pad_0x0de4; /* 0xde4 */
374 __u64 int_clock; /* 0xde8 */ 375 __u64 int_clock; /* 0xde8 */
375 __u8 pad12[0xe00-0xdf0]; /* 0xdf0 */ 376 __u8 pad12[0xe00-0xdf0]; /* 0xdf0 */
376 377