Commit 8aebd722 authored by Uwe Kleine-König's avatar Uwe Kleine-König

pwm: pxa: Make use of devm_pwmchip_alloc() function

This prepares the pwm-pxa driver to further changes of the pwm core
outlined in the commit introducing devm_pwmchip_alloc(). There is no
intended semantical change and the driver should behave as before.

Link: https://lore.kernel.org/r/bee8ae436a9dfb8539637cbb7269a208f787a62a.1707900770.git.u.kleine-koenig@pengutronix.deSigned-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent 37e0f580
...@@ -49,7 +49,6 @@ MODULE_DEVICE_TABLE(platform, pwm_id_table); ...@@ -49,7 +49,6 @@ MODULE_DEVICE_TABLE(platform, pwm_id_table);
#define PWMDCR_FD (1 << 10) #define PWMDCR_FD (1 << 10)
struct pxa_pwm_chip { struct pxa_pwm_chip {
struct pwm_chip chip;
struct device *dev; struct device *dev;
struct clk *clk; struct clk *clk;
...@@ -58,7 +57,7 @@ struct pxa_pwm_chip { ...@@ -58,7 +57,7 @@ struct pxa_pwm_chip {
static inline struct pxa_pwm_chip *to_pxa_pwm_chip(struct pwm_chip *chip) static inline struct pxa_pwm_chip *to_pxa_pwm_chip(struct pwm_chip *chip)
{ {
return container_of(chip, struct pxa_pwm_chip, chip); return pwmchip_get_drvdata(chip);
} }
/* /*
...@@ -159,6 +158,7 @@ MODULE_DEVICE_TABLE(of, pwm_of_match); ...@@ -159,6 +158,7 @@ MODULE_DEVICE_TABLE(of, pwm_of_match);
static int pwm_probe(struct platform_device *pdev) static int pwm_probe(struct platform_device *pdev)
{ {
const struct platform_device_id *id = platform_get_device_id(pdev); const struct platform_device_id *id = platform_get_device_id(pdev);
struct pwm_chip *chip;
struct pxa_pwm_chip *pc; struct pxa_pwm_chip *pc;
int ret = 0; int ret = 0;
...@@ -168,26 +168,27 @@ static int pwm_probe(struct platform_device *pdev) ...@@ -168,26 +168,27 @@ static int pwm_probe(struct platform_device *pdev)
if (id == NULL) if (id == NULL)
return -EINVAL; return -EINVAL;
pc = devm_kzalloc(&pdev->dev, sizeof(*pc), GFP_KERNEL); chip = devm_pwmchip_alloc(&pdev->dev,
if (pc == NULL) (id->driver_data & HAS_SECONDARY_PWM) ? 2 : 1,
return -ENOMEM; sizeof(*pc));
if (IS_ERR(chip))
return PTR_ERR(chip);
pc = to_pxa_pwm_chip(chip);
pc->clk = devm_clk_get(&pdev->dev, NULL); pc->clk = devm_clk_get(&pdev->dev, NULL);
if (IS_ERR(pc->clk)) if (IS_ERR(pc->clk))
return PTR_ERR(pc->clk); return PTR_ERR(pc->clk);
pc->chip.dev = &pdev->dev; chip->ops = &pxa_pwm_ops;
pc->chip.ops = &pxa_pwm_ops;
pc->chip.npwm = (id->driver_data & HAS_SECONDARY_PWM) ? 2 : 1;
if (IS_ENABLED(CONFIG_OF)) if (IS_ENABLED(CONFIG_OF))
pc->chip.of_xlate = of_pwm_single_xlate; chip->of_xlate = of_pwm_single_xlate;
pc->mmio_base = devm_platform_ioremap_resource(pdev, 0); pc->mmio_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(pc->mmio_base)) if (IS_ERR(pc->mmio_base))
return PTR_ERR(pc->mmio_base); return PTR_ERR(pc->mmio_base);
ret = devm_pwmchip_add(&pdev->dev, &pc->chip); ret = devm_pwmchip_add(&pdev->dev, chip);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret); dev_err(&pdev->dev, "pwmchip_add() failed: %d\n", ret);
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment