blob: 566185eb18bf6eec47b45589abef3b77ebbcee27 [file] [log] [blame]
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright 2020 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <zephyr.h>
#include <sys/printk.h>
#include "led.h"
void main(void)
{
int ret;
ret = led_powergood(true);
if (ret < 0) {
printk("Failed to turn on POWERGOOD, ret = %d.\n", ret);
}
}