diff options
author | Marek BehĂșn | 2021-11-26 14:57:08 +0100 |
---|---|---|
committer | Stefan Roese | 2021-12-19 09:50:47 +0100 |
commit | 2105cd042124623a7ad64b6955aba67115db83a3 (patch) | |
tree | bc5d845f0f95bc1bf2bcd254fb3f09d2f8622dd8 /board/kontron | |
parent | 76f5a72835a0e9a8f6bfc653b4b456a60d1f8800 (diff) |
fdt_support: Remove FDT_STATUS_FAIL_ERROR_CODE
Since no one uses this feature and I am not aware of any parsers of this
in Linux, remove it.
Signed-off-by: Marek BehĂșn <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Pratyush Yadav <p.yadav@ti.com>
Cc: Tim Harvey <tharvey@gateworks.com>
Cc: Michael Walle <michael@walle.cc>
Cc: Priyanka Jain <priyanka.jain@nxp.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/kontron')
-rw-r--r-- | board/kontron/sl28/sl28.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kontron/sl28/sl28.c b/board/kontron/sl28/sl28.c index c8ed7ac81ab..e84b3569186 100644 --- a/board/kontron/sl28/sl28.c +++ b/board/kontron/sl28/sl28.c @@ -75,7 +75,7 @@ int ft_board_setup(void *blob, struct bd_info *bd) if (CONFIG_IS_ENABLED(SL28_SPL_LOADS_OPTEE_BL32)) { node = fdt_node_offset_by_compatible(blob, -1, "linaro,optee-tz"); if (node) - fdt_set_node_status(blob, node, FDT_STATUS_OKAY, 0); + fdt_set_node_status(blob, node, FDT_STATUS_OKAY); } return 0; |