1/*
2 * Copyright (c) 2018 Daniel Wagenknecht
3 *
4 * Document the usage of /delete-node/ for device tree nodes
5 * that are missing on only a small subset of SoCs of a given group
6 * of SoCs.
7 * Don't remove this file even if none of the SoCs currently
8 * implemented in zephyr use it.
9 *
10 * spi5 and spi6 are present on all STM32F429XX SoCs except
11 * STM32F429vX SoCs, so they are defined in stm32f429.dtsi and deleted
12 * here.
13 *
14 * SPDX-License-Identifier: Apache-2.0
15 */
16
17#include <st/f4/stm32f429.dtsi>
18
19/delete-node/ &spi5;
20
21/delete-node/ &spi6;
22