This is a note to let you know that I've just added the patch titled pwm: iqs620a: Explicitly set .polarity in .get_state() to the 5.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: pwm-iqs620a-explicitly-set-.polarity-in-.get_state.patch and it can be found in the queue-5.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From stable-owner@xxxxxxxxxxxxxxx Mon Apr 24 07:31:19 2023 From: "Uwe Kleine-König" <u.kleine-koenig@xxxxxxxxxxxxxx> Date: Mon, 24 Apr 2023 07:31:04 +0200 Subject: pwm: iqs620a: Explicitly set .polarity in .get_state() To: stable@xxxxxxxxxxxxxxx Cc: thierry.reding@xxxxxxxxx, Jeff LaBundy <jeff@xxxxxxxxxxx> Message-ID: <20230424053105.21872-1-u.kleine-koenig@xxxxxxxxxxxxxx> From: "Uwe Kleine-König" <u.kleine-koenig@xxxxxxxxxxxxxx> [ Upstream commit b20b097128d9145fadcea1cbb45c4d186cb57466 ] The driver only supports normal polarity. Complete the implementation of .get_state() by setting .polarity accordingly. Fixes: 6f0841a8197b ("pwm: Add support for Azoteq IQS620A PWM generator") Reviewed-by: Jeff LaBundy <jeff@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20230228135508.1798428-4-u.kleine-koenig@xxxxxxxxxxxxxx Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> Signed-off-by: Thierry Reding <thierry.reding@xxxxxxxxx> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/pwm/pwm-iqs620a.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/pwm/pwm-iqs620a.c +++ b/drivers/pwm/pwm-iqs620a.c @@ -132,6 +132,7 @@ static void iqs620_pwm_get_state(struct mutex_unlock(&iqs620_pwm->lock); state->period = IQS620_PWM_PERIOD_NS; + state->polarity = PWM_POLARITY_NORMAL; } static int iqs620_pwm_notifier(struct notifier_block *notifier, Patches currently in stable-queue which might be from stable-owner@xxxxxxxxxxxxxxx are queue-5.10/sched-fair-detect-capacity-inversion.patch queue-5.10/3-3-ext4-fix-use-after-free-in-ext4_xattr_set_entry.patch queue-5.10/pwm-hibvt-explicitly-set-.polarity-in-.get_state.patch queue-5.10/2-3-ext4-remove-duplicate-definition-of-ext4_xattr_ibody_inline_set.patch queue-5.10/pwm-iqs620a-explicitly-set-.polarity-in-.get_state.patch queue-5.10/1-3-revert-ext4-fix-use-after-free-in-ext4_xattr_set_entry.patch queue-5.10/sched-fair-consider-capacity-inversion-in-util_fits_cpu.patch queue-5.10/sched-fair-fixes-for-capacity-inversion-detection.patch queue-5.10/sched-uclamp-fix-a-uninitialized-variable-warnings.patch queue-5.10/sched-uclamp-cater-for-uclamp-in-find_energy_efficient_cpu-s-early-exit-condition.patch