From: Adam Borowski Date: Mon, 15 Nov 2021 17:32:08 +0000 (+0100) Subject: ACPI: thermal: drop an always true check X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8468ccbf4c445dfdfc7e5365dcaf1c18419a6680;p=linux.git ACPI: thermal: drop an always true check 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 Signed-off-by: Rafael J. Wysocki Cc: Sudip Mukherjee Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 95105db642b98..155bbabcc6f5d 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c @@ -1098,8 +1098,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;