diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-10-07 09:19:38 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-10-16 11:10:53 +0000 |
commit | 5dcd35e276888ac556ec594640376e6318c82e3a (patch) | |
tree | 6c9a8dcbfa963ac16bdc3a38f9d3f29d3f8bf65e | |
parent | d96e1737696974efb4566741e75a1f99920f262b (diff) | |
download | qemu-5dcd35e276888ac556ec594640376e6318c82e3a.tar.gz qemu-5dcd35e276888ac556ec594640376e6318c82e3a.tar.bz2 qemu-5dcd35e276888ac556ec594640376e6318c82e3a.zip |
i8259: Remove premature inline function attributes
The compiler is smarter in choosing the right optimization.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | hw/i8259.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/i8259.c b/hw/i8259.c index 60061236f4..f1d58bacb4 100644 --- a/hw/i8259.c +++ b/hw/i8259.c @@ -80,7 +80,7 @@ static uint64_t irq_count[16]; PicState2 *isa_pic; /* set irq level. If an edge is detected, then the IRR is set to 1 */ -static inline void pic_set_irq1(PicState *s, int irq, int level) +static void pic_set_irq1(PicState *s, int irq, int level) { int mask; mask = 1 << irq; @@ -107,7 +107,7 @@ static inline void pic_set_irq1(PicState *s, int irq, int level) /* return the highest priority found in mask (highest = smallest number). Return 8 if no irq */ -static inline int get_priority(PicState *s, int mask) +static int get_priority(PicState *s, int mask) { int priority; if (mask == 0) @@ -206,7 +206,7 @@ static void i8259_set_irq(void *opaque, int irq, int level) } /* acknowledge interrupt 'irq' */ -static inline void pic_intack(PicState *s, int irq) +static void pic_intack(PicState *s, int irq) { if (s->auto_eoi) { if (s->rotate_on_auto_eoi) |