mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
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: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
a0a5f7661e
commit
5f61d9517f
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user