diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 22:46:42 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 22:46:42 +0000 |
commit | b79e175259bd3591cc3abd1ebe8551573927cd56 (patch) | |
tree | 43af753b0577802934a2ea3a50a257fc02619b72 /hw/sh_intc.c | |
parent | d8299bccf265b72db967a064e8151660b78cdfae (diff) |
SH4: kill a few warnings
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5938 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/sh_intc.c')
-rw-r--r-- | hw/sh_intc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sh_intc.c b/hw/sh_intc.c index 7d738d16ca..136e7dd216 100644 --- a/hw/sh_intc.c +++ b/hw/sh_intc.c @@ -73,7 +73,7 @@ void sh_intc_toggle_source(struct intc_source *source, } } -void sh_intc_set_irq (void *opaque, int n, int level) +static void sh_intc_set_irq (void *opaque, int n, int level) { struct intc_desc *desc = opaque; struct intc_source *source = &(desc->sources[n]); |