From 94cd7865a99d4c19a7e33dc4cd48b9bb9d70ac42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Fri, 31 Jan 2025 10:26:16 +0100 Subject: [PATCH] boards: samr34_xpro: add pre_dt_board.cmake MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add pre-devicetree CMake configuration for SAMR34 Xplained Pro board to suppress SPI bus bridge warnings promoted to errors in weekly CI run. Signed-off-by: Benjamin Cabé --- boards/atmel/sam0/samr34_xpro/pre_dt_board.cmake | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 boards/atmel/sam0/samr34_xpro/pre_dt_board.cmake diff --git a/boards/atmel/sam0/samr34_xpro/pre_dt_board.cmake b/boards/atmel/sam0/samr34_xpro/pre_dt_board.cmake new file mode 100644 index 00000000000..94f7f4e4459 --- /dev/null +++ b/boards/atmel/sam0/samr34_xpro/pre_dt_board.cmake @@ -0,0 +1,5 @@ +# Copyright (c) 2021 Linaro Limited +# SPDX-License-Identifier: Apache-2.0 + +# SPI is implemented via sercom so node name isn't spi@... +list(APPEND EXTRA_DTC_FLAGS "-Wno-spi_bus_bridge")