From cdd9bf519d594b87c07193d2770b81a07829a50c Mon Sep 17 00:00:00 2001 From: siddhu8990 Date: Tue, 18 Oct 2016 10:31:23 +0530 Subject: Suppressed declaration of not required variables and functions --- 2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2.3-1/src/c/hardware/rasberrypi/pwm/u8RPIHardPWMSetClocks.c') 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; + } -- cgit