~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to kernel/irq/dummychip.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        return 0;
32
32
}
33
33
 
34
 
#ifndef CONFIG_GENERIC_HARDIRQS_NO_DEPRECATED
35
 
static void compat_noop(unsigned int irq) { }
36
 
#define END_INIT .end = compat_noop
37
 
#else
38
 
#define END_INIT
39
 
#endif
40
 
 
41
34
/*
42
35
 * Generic no controller implementation
43
36
 */
48
41
        .irq_enable     = noop,
49
42
        .irq_disable    = noop,
50
43
        .irq_ack        = ack_bad,
51
 
        END_INIT
52
44
};
53
45
 
54
46
/*
64
56
        .irq_ack        = noop,
65
57
        .irq_mask       = noop,
66
58
        .irq_unmask     = noop,
67
 
        END_INIT
68
59
};