# HG changeset patch # User Michael Spacefalcon # Date 1382255880 0 # Node ID 5b7403f6ae93fd0792d6e309ee39f93de59a0fd9 # Parent 325bbadc0c9c4460b2efa44c6d92ae12c425a4ce nuc-fw/bsp: more reconciliation diff -r 325bbadc0c9c -r 5b7403f6ae93 nuc-fw/bsp/clkm.c --- a/nuc-fw/bsp/clkm.c Sun Oct 20 07:04:15 2013 +0000 +++ b/nuc-fw/bsp/clkm.c Sun Oct 20 07:58:00 2013 +0000 @@ -67,8 +67,8 @@ /* Return : none */ /* Functionality :Initialize the ARM Clock frequency */ /*--------------------------------------------------------------*/ - - inline void CLKM_InitARMClock(SYS_UWORD16 clk_src, SYS_UWORD16 clk_div, SYS_UWORD16 clk_xp5) + + void CLKM_InitARMClock(SYS_UWORD16 clk_src, SYS_UWORD16 clk_div, SYS_UWORD16 clk_xp5) { SYS_UWORD16 cntl = * (volatile SYS_UWORD16 *) CLKM_ARM_CLK; @@ -90,7 +90,7 @@ /* Functionality :Initialize the ARM Clock frequency */ /*--------------------------------------------------------------*/ - inline void CLKM_InitARMClock(SYS_UWORD16 clk_src, SYS_UWORD16 clk_div) + void CLKM_InitARMClock(SYS_UWORD16 clk_src, SYS_UWORD16 clk_div) { SYS_UWORD16 cntl = * (volatile SYS_UWORD16 *) CLKM_ARM_CLK; @@ -118,7 +118,7 @@ /* initialize_wait_loop() function */ /* Called when the HardWare needs time to wait */ /*-------------------------------------------------------*/ -inline SYS_UWORD32 convert_nanosec_to_cycles(SYS_UWORD32 time) +SYS_UWORD32 convert_nanosec_to_cycles(SYS_UWORD32 time) { return( time / ratio_wait_loop); } @@ -313,5 +313,3 @@ asm("END_FUNCTION: "); } - - diff -r 325bbadc0c9c -r 5b7403f6ae93 nuc-fw/include/sys_types.h --- a/nuc-fw/include/sys_types.h Sun Oct 20 07:04:15 2013 +0000 +++ b/nuc-fw/include/sys_types.h Sun Oct 20 07:58:00 2013 +0000 @@ -25,4 +25,4 @@ typedef void (*SYS_FUNC)(void); /* pointer to a function */ -#endif /* __SYS_TYPES_H__ */ \ No newline at end of file +#endif /* __SYS_TYPES_H__ */