mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 13:52:22 +00:00
According to Device Tree specification, previously defined nodes may be deleted with the followin syntax: /delete-node/ node-name; or /delete-node/ &label; Signed-off-by: Yannis Damigos <giannis.damigos@gmail.com>
22 lines
548 B
Plaintext
22 lines
548 B
Plaintext
/*
|
|
* Copyright (c) 2018 Daniel Wagenknecht
|
|
*
|
|
* Document the usage of /delete-node/ for device tree nodes
|
|
* that are missing on on only a small subset of SoCs of a given group
|
|
* of SoCs.
|
|
* Don't remove this file even if none of the SoCs currently
|
|
* implemented in zephyr use it.
|
|
*
|
|
* spi5 and spi6 are present on all STM32F429XX SoCs except
|
|
* STM32F429vX SoCs, so they are defined in stm32f429.dtsi and deleted
|
|
* here.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <st/stm32f429.dtsi>
|
|
|
|
/delete-node/ &spi5;
|
|
|
|
/delete-node/ &spi6;
|