diff options
author | Sage Weil <sage@inktank.com> | 2013-08-15 14:11:45 -0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-08-15 14:11:45 -0400 |
commit | ee3e542fec6e69bc9fb668698889a37d93950ddf (patch) | |
tree | e74ee766a4764769ef1d3d45d266b4dea64101d3 /arch/m68k/kernel | |
parent | fe2a801b50c0bb8039d627e5ae1fec249d10ff39 (diff) | |
parent | f1d6e17f540af37bb1891480143669ba7636c4cf (diff) |
Merge remote-tracking branch 'linus/master' into testing
Diffstat (limited to 'arch/m68k/kernel')
-rw-r--r-- | arch/m68k/kernel/asm-offsets.c | 2 | ||||
-rw-r--r-- | arch/m68k/kernel/ints.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/kernel/asm-offsets.c b/arch/m68k/kernel/asm-offsets.c index a972b00cd77d..8b7b22846366 100644 --- a/arch/m68k/kernel/asm-offsets.c +++ b/arch/m68k/kernel/asm-offsets.c | |||
@@ -77,7 +77,7 @@ int main(void) | |||
77 | DEFINE(BIR_SIZE, offsetof(struct bi_record, size)); | 77 | DEFINE(BIR_SIZE, offsetof(struct bi_record, size)); |
78 | DEFINE(BIR_DATA, offsetof(struct bi_record, data)); | 78 | DEFINE(BIR_DATA, offsetof(struct bi_record, data)); |
79 | 79 | ||
80 | /* offsets into font_desc (drivers/video/console/font.h) */ | 80 | /* offsets into the font_desc struct */ |
81 | DEFINE(FONT_DESC_IDX, offsetof(struct font_desc, idx)); | 81 | DEFINE(FONT_DESC_IDX, offsetof(struct font_desc, idx)); |
82 | DEFINE(FONT_DESC_NAME, offsetof(struct font_desc, name)); | 82 | DEFINE(FONT_DESC_NAME, offsetof(struct font_desc, name)); |
83 | DEFINE(FONT_DESC_WIDTH, offsetof(struct font_desc, width)); | 83 | DEFINE(FONT_DESC_WIDTH, offsetof(struct font_desc, width)); |
diff --git a/arch/m68k/kernel/ints.c b/arch/m68k/kernel/ints.c index 6b32b64bac35..4d7da384eea0 100644 --- a/arch/m68k/kernel/ints.c +++ b/arch/m68k/kernel/ints.c | |||
@@ -101,7 +101,7 @@ void __init m68k_setup_user_interrupt(unsigned int vec, unsigned int cnt) | |||
101 | BUG_ON(IRQ_USER + cnt > NR_IRQS); | 101 | BUG_ON(IRQ_USER + cnt > NR_IRQS); |
102 | m68k_first_user_vec = vec; | 102 | m68k_first_user_vec = vec; |
103 | for (i = 0; i < cnt; i++) | 103 | for (i = 0; i < cnt; i++) |
104 | irq_set_chip(IRQ_USER + i, &user_irq_chip); | 104 | irq_set_chip_and_handler(i, &user_irq_chip, handle_simple_irq); |
105 | *user_irqvec_fixup = vec - IRQ_USER; | 105 | *user_irqvec_fixup = vec - IRQ_USER; |
106 | flush_icache(); | 106 | flush_icache(); |
107 | } | 107 | } |