From 177fe9d7622e40f94f3b55f2dd7347c590d70365 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Thu, 10 Feb 2011 13:57:30 +0000 Subject: [PATCH] buikd: fix cygwin -mno-cygwin build error Remove duplicate inline that causes certain versions of gcc to choke. Signed-off-by: Spencer Oliver --- src/target/dsp563xx_once.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/dsp563xx_once.c b/src/target/dsp563xx_once.c index df43ed6e6c..cb3abf66fb 100644 --- a/src/target/dsp563xx_once.c +++ b/src/target/dsp563xx_once.c @@ -90,7 +90,7 @@ static inline int dsp563xx_once_ir_exec(struct jtag_tap *tap, uint8_t instr, uin } /** single word instruction */ -static inline inline int dsp563xx_once_ir_exec_nq(struct jtag_tap *tap, uint8_t instr, uint8_t rw, uint8_t go, uint8_t ex) +static inline int dsp563xx_once_ir_exec_nq(struct jtag_tap *tap, uint8_t instr, uint8_t rw, uint8_t go, uint8_t ex) { return dsp563xx_write_dr_u8(tap, 0, instr | (ex << 5) | (go << 6) | (rw << 7), 8, 0); } -- 2.30.2