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();
|
// waitIdle();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sampleShiftRegister(void)
|
static __inline__ void sampleShiftRegister(void)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
cyg_uint32 dummy;
|
cyg_uint32 dummy;
|
||||||
|
@ -59,8 +59,7 @@ static void sampleShiftRegister(void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -O3 will inline this for us */
|
static __inline__ void setCurrentState(enum tap_state state)
|
||||||
static void setCurrentState(enum tap_state state)
|
|
||||||
{
|
{
|
||||||
cyg_uint32 a;
|
cyg_uint32 a;
|
||||||
a = state;
|
a = state;
|
||||||
|
|
Loading…
Reference in New Issue