Commit 5f61d951 authored by Andy Shevchenko's avatar Andy Shevchenko

pinctrl: intel: Increase readability of intel_gpio_update_pad_mode()

We better to use usual pattern for read-modify-update,
than doing some operations in definition block.

No functional change.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent a0a5f766
......@@ -1555,10 +1555,12 @@ intel_gpio_is_requested(struct gpio_chip *chip, int base, unsigned int size)
static u32
intel_gpio_update_pad_mode(void __iomem *hostown, u32 mask, u32 value)
{
u32 curr = readl(hostown);
u32 updated = (curr & ~mask) | (value & mask);
u32 curr, updated;
curr = readl(hostown);
updated = (curr & ~mask) | (value & mask);
writel(updated, hostown);
return curr;
}
......
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