zephyr/samples/drivers/display/dummy_dc.overlay
Kumar Gala 346ac6b896 samples: Remove label property from devicetree overlays
"label" properties are not required.  Remove them from samples.

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-08-01 17:59:32 +02:00

18 lines
244 B
Plaintext

/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
zephyr,display = &dummy_dc;
};
dummy_dc: dummy_dc {
compatible = "zephyr,dummy-dc";
height = <240>;
width = <320>;
};
};