Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc

Pull ARM SoC fixes from Arnd Bergmann:
"Two more bugfixes that came in during this week:

- a defconfig change to enable a vital driver used on some Qualcomm
based phones. This was already queued for 4.11, but the maintainer
asked to have it in 4.10 after all.

- a regression fix for the reset controller framework, this got
broken by a typo in the 4.10 merge window"

* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
ARM: multi_v7_defconfig: enable Qualcomm RPMCC
reset: fix shared reset triggered_count decrement on error

Changed files
+2 -1
arch
arm
drivers
reset
+1
arch/arm/configs/multi_v7_defconfig
··· 824 824 CONFIG_QCOM_WCNSS_CTRL=m 825 825 CONFIG_ROCKCHIP_PM_DOMAINS=y 826 826 CONFIG_COMMON_CLK_QCOM=y 827 + CONFIG_QCOM_CLK_RPM=y 827 828 CONFIG_CHROME_PLATFORMS=y 828 829 CONFIG_STAGING_BOARD=y 829 830 CONFIG_CROS_EC_CHARDEV=m
+1 -1
drivers/reset/core.c
··· 163 163 } 164 164 165 165 ret = rstc->rcdev->ops->reset(rstc->rcdev, rstc->id); 166 - if (rstc->shared && !ret) 166 + if (rstc->shared && ret) 167 167 atomic_dec(&rstc->triggered_count); 168 168 169 169 return ret;