]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
thermal: int340x: Increase bitmap size
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Mon, 14 Mar 2022 22:08:55 +0000 (15:08 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Apr 2022 07:06:30 +0000 (09:06 +0200)
commit 668f69a5f863b877bc3ae129efe9a80b6f055141 upstream.

The number of policies are 10, so can't be supported by the bitmap size
of u8.

Even though there are no platfoms with these many policies, but
for correctness increase to u32.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Fixes: 16fc8eca1975 ("thermal/int340x_thermal: Add additional UUIDs")
Cc: 5.1+ <stable@vger.kernel.org> # 5.1+
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/thermal/int340x_thermal/int3400_thermal.c

index d4c374cc4f74f7d23da681e78fd84142384207fe..a8a47013ba47a83dd08b8189677f8dcd003a34f0 100644 (file)
@@ -51,7 +51,7 @@ struct int3400_thermal_priv {
        struct art *arts;
        int trt_count;
        struct trt *trts;
-       u8 uuid_bitmap;
+       u32 uuid_bitmap;
        int rel_misc_dev_res;
        int current_uuid_index;
 };