Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'regmap-fix-v6.11-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap

Pull regmap fix from Mark Brown:
"Arnd sent a workaround for a false positive warning which was showing
up with GCC 14.1"

* tag 'regmap-fix-v6.11-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
regmap: maple: work around gcc-14.1 false-positive warning

+2 -1
+2 -1
drivers/base/regmap/regcache-maple.c
··· 110 110 struct maple_tree *mt = map->cache; 111 111 MA_STATE(mas, mt, min, max); 112 112 unsigned long *entry, *lower, *upper; 113 - unsigned long lower_index, lower_last; 113 + /* initialized to work around false-positive -Wuninitialized warning */ 114 + unsigned long lower_index = 0, lower_last = 0; 114 115 unsigned long upper_index, upper_last; 115 116 int ret = 0; 116 117