spi: loopback-test: fix up const pointer issue in rx_ranges_cmp()
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 May 2025 10:59:14 +0000 (12:59 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 22 May 2025 11:03:35 +0000 (12:03 +0100)
When a list head is a const pointer, the list entry for that head also
must remain a const pointer, otherwise we are just "throwing it away"
for no good reason.  Fix this up by properly marking these structures as
const.

Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://patch.msgid.link/2025052213-semifinal-sublevel-d631@gregkh
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-loopback-test.c

index 369cdb707fada77ee8205eedabdddb1e334cbeb0..f02d56fd917d1ea50bfa183334c07670d1cb17ba 100644 (file)
@@ -494,8 +494,8 @@ struct rx_ranges {
 static int rx_ranges_cmp(void *priv, const struct list_head *a,
                         const struct list_head *b)
 {
-       struct rx_ranges *rx_a = list_entry(a, struct rx_ranges, list);
-       struct rx_ranges *rx_b = list_entry(b, struct rx_ranges, list);
+       const struct rx_ranges *rx_a = list_entry(a, struct rx_ranges, list);
+       const struct rx_ranges *rx_b = list_entry(b, struct rx_ranges, list);
 
        if (rx_a->start > rx_b->start)
                return 1;