1. 20 3月, 2014 1 次提交
  2. 19 3月, 2014 1 次提交
  3. 05 3月, 2014 1 次提交
    • T
      m68k: Do not rely on magic indirect includes · abcfc543
      Thomas Gleixner 提交于
      commit: 8f945a33 (genirq: Move kstat_incr_irqs_this_cpu() to core)
      unearthed the following:
      
      arch/m68k/kernel/ints.c:34:15: error: variable 'auto_irq_chip' has initializer but incomplete type
      arch/m68k/kernel/ints.c:35:2: error: unknown field 'name' specified in initializer
      arch/m68k/kernel/ints.c:35:2: warning: excess elements in struct initializer [enabled by default]
      
      The reason is that this file requires linux/irq.h and magically
      pulled that in via linux/kernel_stat.h
      
      The commit above got rid of the pointless include of linux/irq.h in
      linux/kernel_stat.h and therefor broke the build.
      
      Include linux/irq.h
      
      Reported-by: fengguang.wu@intel.com
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      abcfc543
  4. 11 2月, 2014 3 次提交
  5. 19 1月, 2014 1 次提交
  6. 16 1月, 2014 1 次提交
  7. 13 1月, 2014 1 次提交
    • M
      m68k/irq - Use polled IRQ flag for MFP timer cascaded interrupts · a0b7b242
      Michael Schmitz 提交于
      Some Atari hardware has no capacity to raise interrupts (e.g.
      network or USB adapter hardware attached via ROM port). The driver
      interrupt routine is called from a timer interrupt (timer D) in
      these cases, using chained device specific pseudo interrupts
      (IRQ_MFP_TIMER1 ff.)
      
      These interrupts will more often than not, return IRQ_NONE as
      there is not always work for the device handler when called.
      Too many unhandled interrupts will result in the interrupt
      being disabled by the stuck interrupt watchdog.
      
      As preferred option to flag interrupts as needing exclusion
      from the watchdog mechanism, tglx added the IRQ_IS_POLLED flag
      for use in such a case. Currently, two interrupts need to use
      this flag. Add more users as needed.
      Signed-off-by: NMichael Schmitz <schmitz@debian.org>
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      a0b7b242
  8. 12 1月, 2014 1 次提交
  9. 31 12月, 2013 7 次提交
  10. 18 12月, 2013 1 次提交
  11. 08 12月, 2013 5 次提交
  12. 26 11月, 2013 17 次提交