summaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-mxs.c
diff options
context:
space:
mode:
authorShawn Guo2012-06-26 10:58:09 +0200
committerThierry Reding2012-07-23 13:23:54 +0200
commit01bf32e94968fd13804062859cfd935efebc11e9 (patch)
tree542a8362ce3c07764a4749f3a1f661cee35521be /drivers/pwm/pwm-mxs.c
parentpwm: pwm-mxs: encode soc name in compatible string (diff)
downloadkernel-qcow2-linux-01bf32e94968fd13804062859cfd935efebc11e9.tar.gz
kernel-qcow2-linux-01bf32e94968fd13804062859cfd935efebc11e9.tar.xz
kernel-qcow2-linux-01bf32e94968fd13804062859cfd935efebc11e9.zip
pwm: pwm-mxs: use global reset function stmp_reset_block
Use global reset function stmp_reset_block instead of mxs_reset_block to remove <mach/common.h> inclusion. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Diffstat (limited to 'drivers/pwm/pwm-mxs.c')
-rw-r--r--drivers/pwm/pwm-mxs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-mxs.c b/drivers/pwm/pwm-mxs.c
index d9a38050a502..23e524bbee03 100644
--- a/drivers/pwm/pwm-mxs.c
+++ b/drivers/pwm/pwm-mxs.c
@@ -19,7 +19,7 @@
#include <linux/platform_device.h>
#include <linux/pwm.h>
#include <linux/slab.h>
-#include <mach/common.h>
+#include <linux/stmp_device.h>
#define SET 0x4
#define CLR 0x8
@@ -163,7 +163,7 @@ static int mxs_pwm_probe(struct platform_device *pdev)
mxs->dev = &pdev->dev;
platform_set_drvdata(pdev, mxs);
- mxs_reset_block(mxs->base);
+ stmp_reset_block(mxs->base);
return 0;