[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-id: <002401cd708c$b3c09ed0$1b41dc70$%han@samsung.com>
Date: Thu, 02 Aug 2012 17:56:27 +0900
From: Jingoo Han <jg1.han@...sung.com>
To: 'Thierry Reding' <thierry.reding@...onic-design.de>
Cc: linux-kernel@...r.kernel.org, 'Jingoo Han' <jg1.han@...sung.com>
Subject: [PATCH 2/2] pwm: samsung: fix the number of PWMs
Samsung SoC can provide 4 PWMs; thus, the number of PWMs should be
set as 4.
Signed-off-by: Jingoo Han <jg1.han@...sung.com>
---
drivers/pwm/pwm-samsung.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/pwm/pwm-samsung.c b/drivers/pwm/pwm-samsung.c
index e5187c0..32562c6 100644
--- a/drivers/pwm/pwm-samsung.c
+++ b/drivers/pwm/pwm-samsung.c
@@ -228,7 +228,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)
s3c->chip.dev = &pdev->dev;
s3c->chip.ops = &s3c_pwm_ops;
s3c->chip.base = -1;
- s3c->chip.npwm = 1;
+ s3c->chip.npwm = 4;
s3c->clk = devm_clk_get(dev, "pwm-tin");
if (IS_ERR(s3c->clk)) {
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists