1/* 2 * Copyright (c) 2024 Ayush Singh <ayush@beagleboard.org> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 aliases { 9 pwm-led0 = &pwm_led0; 10 }; 11 12 pwmleds { 13 compatible = "pwm-leds"; 14 pwm_led0: pwm_led_0 { 15 pwms = <&pwm0 0 255 PWM_POLARITY_NORMAL>; 16 label = "PWM MB1"; 17 }; 18 }; 19}; 20