]> git.itanic.dy.fi Git - linux-stable/commitdiff
ACPI: thermal: drop an always true check
authorAdam Borowski <kilobyte@angband.pl>
Mon, 15 Nov 2021 17:32:08 +0000 (18:32 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 9 Jun 2023 08:22:53 +0000 (10:22 +0200)
commit e5b5d25444e9ee3ae439720e62769517d331fa39 upstream.

Address of a field inside a struct can't possibly be null; gcc-12 warns
about this.

Signed-off-by: Adam Borowski <kilobyte@angband.pl>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/acpi/thermal.c

index 3bdab6eb33bf3b81fa7c1c403aad3e0bcc0b5c58..cceb5ca357dee20f4e3133d418c1f699aaa8e91d 100644 (file)
@@ -1172,8 +1172,6 @@ static int acpi_thermal_resume(struct device *dev)
                return -EINVAL;
 
        for (i = 0; i < ACPI_THERMAL_MAX_ACTIVE; i++) {
-               if (!(&tz->trips.active[i]))
-                       break;
                if (!tz->trips.active[i].flags.valid)
                        break;
                tz->trips.active[i].flags.enabled = 1;