diff options
author | Alban Bedel <[email protected]> | 2012-11-14 12:58:15 +0100 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2012-12-06 08:52:13 +0100 |
commit | 8fc6d09dcbcdb252e8b029f2a26fe303cc4649ec (patch) | |
tree | 04aa7d587a297da3a4769cdcf7809f48ee4bd8d9 | |
parent | 54b2a999a167510aa6eb54f49ef21a40946c88ba (diff) |
pwm: lpc32xx: Set the chip base for dynamic allocation
Doing so allows the base to be allocated dynamically at runtime and
makes it easier for the chip to coexist with other PWM chips.
Signed-off-by: Alban Bedel <[email protected]>
Acked-by: Alexandre Pereira da Silva <[email protected]>
Acked-by: Roland Stigge <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
-rw-r--r-- | drivers/pwm/pwm-lpc32xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pwm/pwm-lpc32xx.c b/drivers/pwm/pwm-lpc32xx.c index 971874b0707a..81db1bd5e92d 100644 --- a/drivers/pwm/pwm-lpc32xx.c +++ b/drivers/pwm/pwm-lpc32xx.c @@ -121,6 +121,7 @@ static int lpc32xx_pwm_probe(struct platform_device *pdev) lpc32xx->chip.dev = &pdev->dev; lpc32xx->chip.ops = &lpc32xx_pwm_ops; lpc32xx->chip.npwm = 2; + lpc32xx->chip.base = -1; ret = pwmchip_add(&lpc32xx->chip); if (ret < 0) { |