1/*
2 * Copyright 2023 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <dt-bindings/gpio/gpio.h>
8
9/ {
10	aliases {
11		led0 = &led_A3;
12	};
13
14	gpio-led {
15		compatible = "gpio-leds";
16		led_A3: led_A3 {
17			gpios = <&gpioa 3 GPIO_ACTIVE_HIGH>;
18		};
19	};
20};
21
22&gpioa {
23	status = "okay";
24};
25