mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
pwm: crc: Use consistent variable naming for driver data
All but one local variable of type pointer to struct crystalcove_pwm are called "crc_pwm", the one outlier is called "pwm" which is usually reserved for variables of type pointer to struct pwm_device. So rename that one "pwm" to "crc_pwm" for consistency. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
parent
01b571fbba
commit
d243221dc9
@ -160,22 +160,22 @@ static const struct pwm_ops crc_pwm_ops = {
|
||||
|
||||
static int crystalcove_pwm_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct crystalcove_pwm *pwm;
|
||||
struct crystalcove_pwm *crc_pwm;
|
||||
struct device *dev = pdev->dev.parent;
|
||||
struct intel_soc_pmic *pmic = dev_get_drvdata(dev);
|
||||
|
||||
pwm = devm_kzalloc(&pdev->dev, sizeof(*pwm), GFP_KERNEL);
|
||||
if (!pwm)
|
||||
crc_pwm = devm_kzalloc(&pdev->dev, sizeof(*crc_pwm), GFP_KERNEL);
|
||||
if (!crc_pwm)
|
||||
return -ENOMEM;
|
||||
|
||||
pwm->chip.dev = &pdev->dev;
|
||||
pwm->chip.ops = &crc_pwm_ops;
|
||||
pwm->chip.npwm = 1;
|
||||
crc_pwm->chip.dev = &pdev->dev;
|
||||
crc_pwm->chip.ops = &crc_pwm_ops;
|
||||
crc_pwm->chip.npwm = 1;
|
||||
|
||||
/* get the PMIC regmap */
|
||||
pwm->regmap = pmic->regmap;
|
||||
crc_pwm->regmap = pmic->regmap;
|
||||
|
||||
return devm_pwmchip_add(&pdev->dev, &pwm->chip);
|
||||
return devm_pwmchip_add(&pdev->dev, &crc_pwm->chip);
|
||||
}
|
||||
|
||||
static struct platform_driver crystalcove_pwm_driver = {
|
||||
|
Loading…
Reference in New Issue
Block a user