From a94abfadc42b02c2dd6c55df6c494ed8efdc41d7 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 1 Dec 2023 15:02:46 -0800 Subject: [PATCH] image.mk: reorder DTC_WARN_FLAGS based on upstream pci warnings got reenabled as they were fixed upstream. Signed-off-by: Rosen Penev --- include/image.mk | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/include/image.mk b/include/image.mk index 096ccb5f18..f5ab1d7953 100644 --- a/include/image.mk +++ b/include/image.mk @@ -151,17 +151,13 @@ endif # Disable noisy checks by default as in upstream DTC_WARN_FLAGS := \ + -Wno-interrupt_provider \ + -Wno-unique_unit_address \ -Wno-unit_address_vs_reg \ - -Wno-simple_bus_reg \ - -Wno-unit_address_format \ - -Wno-pci_bridge \ - -Wno-pci_device_bus_num \ - -Wno-pci_device_reg \ -Wno-avoid_unnecessary_addr_size \ -Wno-alias_paths \ -Wno-graph_child_address \ - -Wno-graph_port \ - -Wno-unique_unit_address + -Wno-simple_bus_reg DTC_FLAGS += $(DTC_WARN_FLAGS) DTCO_FLAGS += $(DTC_WARN_FLAGS)