1/*
2 * Copyright (c) 2024 Renesas Electronics Corporation
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	aliases {
8		led0 = &led_0;
9	};
10
11	gpio-led {
12		compatible = "gpio-leds";
13		led_0: led_0 {
14			gpios = <&gpio13 1 0>;
15		};
16	};
17};
18
19&gpio{
20	status = "okay";
21};
22
23&gpio13 {
24	irqs = <1 1>;
25	status = "okay";
26};
27