Skip to content

Commit

Permalink
regulator: stm32-pwr: Remove unneeded *desc from struct stm32_pwr_reg
Browse files Browse the repository at this point in the history
Just use rdev->desc instead.

Signed-off-by: Axel Lin <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
AxelLin authored and broonie committed May 3, 2019
1 parent e219c2b commit 7bcbdbe
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions drivers/regulator/stm32-pwr.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ static u32 ready_mask_table[STM32PWR_REG_NUM_REGS] = {

struct stm32_pwr_reg {
void __iomem *base;
const struct regulator_desc *desc;
u32 ready_mask;
};

Expand All @@ -61,7 +60,7 @@ static int stm32_pwr_reg_is_enabled(struct regulator_dev *rdev)

val = readl_relaxed(priv->base + REG_PWR_CR3);

return (val & priv->desc->enable_mask);
return (val & rdev->desc->enable_mask);
}

static int stm32_pwr_reg_enable(struct regulator_dev *rdev)
Expand All @@ -71,7 +70,7 @@ static int stm32_pwr_reg_enable(struct regulator_dev *rdev)
u32 val;

val = readl_relaxed(priv->base + REG_PWR_CR3);
val |= priv->desc->enable_mask;
val |= rdev->desc->enable_mask;
writel_relaxed(val, priv->base + REG_PWR_CR3);

/* use an arbitrary timeout of 20ms */
Expand All @@ -90,7 +89,7 @@ static int stm32_pwr_reg_disable(struct regulator_dev *rdev)
u32 val;

val = readl_relaxed(priv->base + REG_PWR_CR3);
val &= ~priv->desc->enable_mask;
val &= ~rdev->desc->enable_mask;
writel_relaxed(val, priv->base + REG_PWR_CR3);

/* use an arbitrary timeout of 20ms */
Expand Down Expand Up @@ -153,7 +152,6 @@ static int stm32_pwr_regulator_probe(struct platform_device *pdev)
if (!priv)
return -ENOMEM;
priv->base = base;
priv->desc = &stm32_pwr_desc[i];
priv->ready_mask = ready_mask_table[i];
config.driver_data = priv;

Expand Down

0 comments on commit 7bcbdbe

Please sign in to comment.