diff options
-rw-r--r-- | scripts/Makefile.lib | 12 | ||||
-rwxr-xr-x | scripts/dtc/update-dtc-source.sh | 1 |
2 files changed, 12 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index 0a07f9014944..8066b6185d1e 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib | |||
@@ -280,7 +280,17 @@ DTC ?= $(objtree)/scripts/dtc/dtc | |||
280 | 280 | ||
281 | # Disable noisy checks by default | 281 | # Disable noisy checks by default |
282 | ifeq ($(KBUILD_ENABLE_EXTRA_GCC_CHECKS),) | 282 | ifeq ($(KBUILD_ENABLE_EXTRA_GCC_CHECKS),) |
283 | DTC_FLAGS += -Wno-unit_address_vs_reg | 283 | DTC_FLAGS += -Wno-unit_address_vs_reg \ |
284 | -Wno-simple_bus_reg \ | ||
285 | -Wno-unit_address_format \ | ||
286 | -Wno-pci_bridge \ | ||
287 | -Wno-pci_device_bus_num \ | ||
288 | -Wno-pci_device_reg | ||
289 | endif | ||
290 | |||
291 | ifeq ($(KBUILD_ENABLE_EXTRA_GCC_CHECKS),2) | ||
292 | DTC_FLAGS += -Wnode_name_chars_strict \ | ||
293 | -Wproperty_name_chars_strict | ||
284 | endif | 294 | endif |
285 | 295 | ||
286 | # Generate an assembly file to wrap the output of the device tree compiler | 296 | # Generate an assembly file to wrap the output of the device tree compiler |
diff --git a/scripts/dtc/update-dtc-source.sh b/scripts/dtc/update-dtc-source.sh index c92e6bd9458d..b8ebcc6722d2 100755 --- a/scripts/dtc/update-dtc-source.sh +++ b/scripts/dtc/update-dtc-source.sh | |||
@@ -77,4 +77,5 @@ This adds the following commits from upstream: | |||
77 | ${dtc_log} | 77 | ${dtc_log} |
78 | EOF | 78 | EOF |
79 | ) | 79 | ) |
80 | |||
80 | git commit -e -v -s -m "${commit_msg}" | 81 | git commit -e -v -s -m "${commit_msg}" |