diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-06-22 10:47:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-06-22 10:47:29 -0700 |
commit | 4f92f0e25a48212ae06e0761504ee0c9c23776ee (patch) | |
tree | 547fb6a55a48c9180bbcf0fe6240ac27f855f3b1 /drivers | |
parent | 8d829b9bb878904f3419af8003176a12910b94e8 (diff) | |
parent | 9e69672e90ccff10dab6f0c9545226a886e5973c (diff) |
Merge tag 'mfd-fixes-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
Pull MFD fixes from Lee Jones:
- arizona: use address passed in, rather than hard coded value
- correct STM32 clock-names value in DT binding documentation
* tag 'mfd-fixes-4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd:
dt-bindings: mfd: Update STM32 timers clock names
mfd: arizona: Fix typo using hard-coded register
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mfd/arizona-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c index 75488e65cd96..8d46e3ad9529 100644 --- a/drivers/mfd/arizona-core.c +++ b/drivers/mfd/arizona-core.c @@ -245,8 +245,7 @@ static int arizona_poll_reg(struct arizona *arizona, int ret; ret = regmap_read_poll_timeout(arizona->regmap, - ARIZONA_INTERRUPT_RAW_STATUS_5, val, - ((val & mask) == target), + reg, val, ((val & mask) == target), ARIZONA_REG_POLL_DELAY_US, timeout_ms * 1000); if (ret) |