pinctrl: ocelot: combine get resource and ioremap into single call
Simple cleanup to make two function calls only one. Signed-off-by: Colin Foster <colin.foster@in-advantage.com> Link: https://lore.kernel.org/r/20211119195928.2498441-2-colin.foster@in-advantage.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
1dd19cae15
commit
ad96111e65
@ -1761,7 +1761,6 @@ static int ocelot_pinctrl_probe(struct platform_device *pdev)
|
|||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct ocelot_pinctrl *info;
|
struct ocelot_pinctrl *info;
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
struct resource *res;
|
|
||||||
int ret;
|
int ret;
|
||||||
struct regmap_config regmap_config = {
|
struct regmap_config regmap_config = {
|
||||||
.reg_bits = 32,
|
.reg_bits = 32,
|
||||||
@ -1794,8 +1793,7 @@ static int ocelot_pinctrl_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
/* Pinconf registers */
|
/* Pinconf registers */
|
||||||
if (info->desc->confops) {
|
if (info->desc->confops) {
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
base = devm_ioremap_resource(dev, res);
|
|
||||||
if (IS_ERR(base))
|
if (IS_ERR(base))
|
||||||
dev_dbg(dev, "Failed to ioremap config registers (no extended pinconf)\n");
|
dev_dbg(dev, "Failed to ioremap config registers (no extended pinconf)\n");
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user