diff options
author | siddhu8990 | 2016-10-18 10:31:23 +0530 |
---|---|---|
committer | siddhu8990 | 2016-10-18 10:31:23 +0530 |
commit | cdd9bf519d594b87c07193d2770b81a07829a50c (patch) | |
tree | c8985f43c314cafcfa04053a821116424d54c2a1 /2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c | |
parent | f0ef5a2d4560f166751b58020ee5a2bc70904611 (diff) | |
download | Scilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.tar.gz Scilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.tar.bz2 Scilab2C-cdd9bf519d594b87c07193d2770b81a07829a50c.zip |
Suppressed declaration of not required variables and functions
Diffstat (limited to '2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c')
-rw-r--r-- | 2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c b/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c index 883f3faf..d06b135c 100644 --- a/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c +++ b/2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c @@ -19,9 +19,9 @@ #include "types.h" #include "RPIPeripheralPWM.h" -uint8 u8RPIHardPWMSetClocks(uint16 clk_divisor) +void u8RPIHardPWMSetClocks(uint16 clk_divisor) { pwmSetClock(clk_divisor); - return 0; + } |