diff options
author | Jean Delvare <khali@linux-fr.org> | 2010-03-05 16:17:22 -0500 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2010-03-05 16:17:22 -0500 |
commit | ebec05bdc4f7d3da852aa86fb54b163d9aeb9848 (patch) | |
tree | 54bd0d9327a4b83651c2f5d640848f304ee6ff0f /drivers/hwmon | |
parent | cccfc9c4bb3c7888f8249b36e08d6e115238c613 (diff) |
hwmon: (g760a) Make rpm_from_cnt static
Function rpm_from_cnt is only used internally so it can be made
static. Make it inline while we're here, for performance reasons
(although hopefully gcc would figure out by itself...)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Herbert Valerio Riedel <hvr@gnu.org>
Acked-by: Martin Michlmayr <tbm@cyrius.com>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/g760a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/g760a.c b/drivers/hwmon/g760a.c index 19c01a49f6be..09ea12e0a551 100644 --- a/drivers/hwmon/g760a.c +++ b/drivers/hwmon/g760a.c | |||
@@ -68,7 +68,7 @@ struct g760a_data { | |||
68 | #define PWM_FROM_CNT(cnt) (0xff-(cnt)) | 68 | #define PWM_FROM_CNT(cnt) (0xff-(cnt)) |
69 | #define PWM_TO_CNT(pwm) (0xff-(pwm)) | 69 | #define PWM_TO_CNT(pwm) (0xff-(pwm)) |
70 | 70 | ||
71 | unsigned int rpm_from_cnt(u8 val, u32 clk, u16 div) | 71 | static inline unsigned int rpm_from_cnt(u8 val, u32 clk, u16 div) |
72 | { | 72 | { |
73 | return ((val == 0x00) ? 0 : ((clk*30)/(val*div))); | 73 | return ((val == 0x00) ? 0 : ((clk*30)/(val*div))); |
74 | } | 74 | } |