~ubuntu-branches/ubuntu/quantal/linux-ti-omap4/quantal-proposed

« back to all changes in this revision

Viewing changes to arch/x86/kernel/irq.c

  • Committer: Package Import Robot
  • Author(s): Brad Figg, Brad Figg
  • Date: 2013-06-08 09:09:23 UTC
  • Revision ID: package-import@ubuntu.com-20130608090923-ibtnp6edtrn3sxik
Tags: 3.5.0-226.39
[ Brad Figg ]

UBUNTU: Fixup missing abi files causing FTBS

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
u64 arch_irq_stat(void)
166
166
{
167
167
        u64 sum = atomic_read(&irq_err_count);
168
 
 
169
 
#ifdef CONFIG_X86_IO_APIC
170
 
        sum += atomic_read(&irq_mis_count);
171
 
#endif
172
168
        return sum;
173
169
}
174
170