From: Peter Maydell Date: Sun, 14 Sep 2014 19:45:37 +0000 (+0100) Subject: target-mips/dsp_helper.c: Remove unused function get_DSPControl_24() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3414e93eb7fcc8d24500edbeddf94b1bd75ac46b;p=qemu.git target-mips/dsp_helper.c: Remove unused function get_DSPControl_24() The function get_DSPControl_24() is unused; remove it. Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson Signed-off-by: Leon Alrae --- diff --git a/target-mips/dsp_helper.c b/target-mips/dsp_helper.c index 94083fb424..2ea94a73ba 100644 --- a/target-mips/dsp_helper.c +++ b/target-mips/dsp_helper.c @@ -76,15 +76,6 @@ static inline void set_DSPControl_24(uint32_t flag, int len, CPUMIPSState *env) env->active_tc.DSPControl |= (target_ulong)flag << 24; } -static inline uint32_t get_DSPControl_24(int len, CPUMIPSState *env) -{ - uint32_t filter; - - filter = (0x01 << len) - 1; - - return (env->active_tc.DSPControl >> 24) & filter; -} - static inline void set_DSPControl_pos(uint32_t pos, CPUMIPSState *env) { target_ulong dspc;