diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2013-05-24 19:23:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-30 08:54:01 -0400 |
commit | 53e2e380891facf2b0fdb43482b8febb6e17f7f6 (patch) | |
tree | b047ef47fb5f6330477a05898dd4a9f3d46506d0 | |
parent | a39ca2740c58ddef91efc5ea6889ecee1c314c42 (diff) |
misc/ep93xx_pwm: remove ep93xx_pwm_write_tc() inline function
This is a simple wrapper around writel(), remove it.
Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Ryan Mallon <rmallon@gmail.com>
Cc: Matthieu Crapet <mcrapet@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/ep93xx_pwm.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/misc/ep93xx_pwm.c b/drivers/misc/ep93xx_pwm.c index 06f0c63e8b44..ab5a48135508 100644 --- a/drivers/misc/ep93xx_pwm.c +++ b/drivers/misc/ep93xx_pwm.c | |||
@@ -39,11 +39,6 @@ struct ep93xx_pwm { | |||
39 | u32 duty_percent; | 39 | u32 duty_percent; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | static inline void ep93xx_pwm_write_tc(struct ep93xx_pwm *pwm, u16 value) | ||
43 | { | ||
44 | writel(value, pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); | ||
45 | } | ||
46 | |||
47 | static inline u16 ep93xx_pwm_read_tc(struct ep93xx_pwm *pwm) | 42 | static inline u16 ep93xx_pwm_read_tc(struct ep93xx_pwm *pwm) |
48 | { | 43 | { |
49 | return readl(pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); | 44 | return readl(pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); |
@@ -157,11 +152,11 @@ static ssize_t ep93xx_pwm_set_freq(struct device *dev, | |||
157 | 152 | ||
158 | /* If pwm is running, order is important */ | 153 | /* If pwm is running, order is important */ |
159 | if (val > term) { | 154 | if (val > term) { |
160 | ep93xx_pwm_write_tc(pwm, val); | 155 | writel(val, pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); |
161 | ep93xx_pwm_write_dc(pwm, duty); | 156 | ep93xx_pwm_write_dc(pwm, duty); |
162 | } else { | 157 | } else { |
163 | ep93xx_pwm_write_dc(pwm, duty); | 158 | ep93xx_pwm_write_dc(pwm, duty); |
164 | ep93xx_pwm_write_tc(pwm, val); | 159 | writel(val, pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); |
165 | } | 160 | } |
166 | 161 | ||
167 | if (!ep93xx_pwm_is_enabled(pwm)) | 162 | if (!ep93xx_pwm_is_enabled(pwm)) |
@@ -290,7 +285,7 @@ static int __init ep93xx_pwm_probe(struct platform_device *pdev) | |||
290 | 285 | ||
291 | /* disable pwm at startup. Avoids zero value. */ | 286 | /* disable pwm at startup. Avoids zero value. */ |
292 | ep93xx_pwm_disable(pwm); | 287 | ep93xx_pwm_disable(pwm); |
293 | ep93xx_pwm_write_tc(pwm, EP93XX_PWM_MAX_COUNT); | 288 | writel(EP93XX_PWM_MAX_COUNT, pwm->mmio_base + EP93XX_PWMx_TERM_COUNT); |
294 | ep93xx_pwm_write_dc(pwm, EP93XX_PWM_MAX_COUNT / 2); | 289 | ep93xx_pwm_write_dc(pwm, EP93XX_PWM_MAX_COUNT / 2); |
295 | 290 | ||
296 | clk_enable(pwm->clk); | 291 | clk_enable(pwm->clk); |