Revert "tools: fit_image: add -Wno-unit_address_vs_reg"

This reverts commit 75e20461a6.

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: If549e8a3129569b82c625b0afb0b453f4ad56f60
This commit is contained in:
Joseph Chen 2020-05-18 09:36:10 +08:00
parent 8c5bfb85bb
commit 4405dc8ff2
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ static int fit_handle_file(struct image_tool_params *params)
*cmd = '\0';
} else if (params->datafile) {
/* dtc -I dts -O dtb -p 500 datafile > tmpfile */
snprintf(cmd, sizeof(cmd), "%s -Wno-unit_address_vs_reg %s \"%s\" > \"%s\"",
snprintf(cmd, sizeof(cmd), "%s %s \"%s\" > \"%s\"",
MKIMAGE_DTC, params->dtc, params->datafile, tmpfile);
debug("Trying to execute \"%s\"\n", cmd);
} else {