]> Git Repo - linux.git/commitdiff
regulator: bd9576: Fix testing wrong flag in check_temp_flag_mismatch
authorAxel Lin <[email protected]>
Wed, 23 Jun 2021 15:34:43 +0000 (23:34 +0800)
committerMark Brown <[email protected]>
Thu, 1 Jul 2021 13:50:30 +0000 (14:50 +0100)
Fix trivial copy-paste typo.

Signed-off-by: Axel Lin <[email protected]>
Reviewed-by: Matti Vaittinen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
drivers/regulator/bd9576-regulator.c

index e16c3727db7ad9fb720b50dbd62cc0067efc849b..aa42da4d141edd350a52795a1a4b413c36b9cb42 100644 (file)
@@ -294,9 +294,9 @@ static bool check_temp_flag_mismatch(struct regulator_dev *rdev, int severity,
                                    struct bd957x_regulator_data *r)
 {
        if ((severity == REGULATOR_SEVERITY_ERR &&
-            r->ovd_notif != REGULATOR_EVENT_OVER_TEMP) ||
+            r->temp_notif != REGULATOR_EVENT_OVER_TEMP) ||
             (severity == REGULATOR_SEVERITY_WARN &&
-            r->ovd_notif != REGULATOR_EVENT_OVER_TEMP_WARN)) {
+            r->temp_notif != REGULATOR_EVENT_OVER_TEMP_WARN)) {
                dev_warn(rdev_get_dev(rdev),
                         "Can't support both thermal WARN and ERR\n");
                if (severity == REGULATOR_SEVERITY_WARN)
This page took 0.061784 seconds and 4 git commands to generate.