mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-19 05:55:41 +10:00
zy1000: less warnings
use inline for static functions in header files to avoid warnings about fn not being used. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
parent
d4bef466c3
commit
12618e4c6d
@ -50,7 +50,7 @@ static __inline__ void waitQueue(void)
|
||||
// waitIdle();
|
||||
}
|
||||
|
||||
static void sampleShiftRegister(void)
|
||||
static __inline__ void sampleShiftRegister(void)
|
||||
{
|
||||
#if 0
|
||||
cyg_uint32 dummy;
|
||||
@ -59,8 +59,7 @@ static void sampleShiftRegister(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
/* -O3 will inline this for us */
|
||||
static void setCurrentState(enum tap_state state)
|
||||
static __inline__ void setCurrentState(enum tap_state state)
|
||||
{
|
||||
cyg_uint32 a;
|
||||
a = state;
|
||||
|
Loading…
Reference in New Issue
Block a user