diff options
author | Kees Cook <keescook@chromium.org> | 2022-10-06 21:20:53 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-10-07 09:50:07 +0200 |
commit | aabf6155dfb83262ef9a10af4bef945e7aba9b8e (patch) | |
tree | f6f3bcd9965f7a636e41fcdcea12f8154117a8d8 | |
parent | net: ethernet: mediatek: Remove -Warray-bounds exception (diff) | |
download | linux-aabf6155dfb83262ef9a10af4bef945e7aba9b8e.tar.xz linux-aabf6155dfb83262ef9a10af4bef945e7aba9b8e.zip |
net: ethernet: bgmac: Remove -Warray-bounds exception
GCC-12 emits false positive -Warray-bounds warnings with
CONFIG_UBSAN_SHIFT (-fsanitize=shift). This is fixed in GCC 13[1],
and there is top-level Makefile logic to remove -Warray-bounds for
known-bad GCC versions staring with commit f0be87c42cbd ("gcc-12: disable
'-Warray-bounds' universally for now").
Remove the local work-around.
[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105679
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/broadcom/Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/ethernet/broadcom/Makefile b/drivers/net/ethernet/broadcom/Makefile index 2e6c5f258a1f..0ddfb5b5d53c 100644 --- a/drivers/net/ethernet/broadcom/Makefile +++ b/drivers/net/ethernet/broadcom/Makefile @@ -17,8 +17,3 @@ obj-$(CONFIG_BGMAC_BCMA) += bgmac-bcma.o bgmac-bcma-mdio.o obj-$(CONFIG_BGMAC_PLATFORM) += bgmac-platform.o obj-$(CONFIG_SYSTEMPORT) += bcmsysport.o obj-$(CONFIG_BNXT) += bnxt/ - -# FIXME: temporarily silence -Warray-bounds on non W=1+ builds -ifndef KBUILD_EXTRA_WARN -CFLAGS_tg3.o += -Wno-array-bounds -endif |