summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/kukui/reset.c
blob: ad884ebe3021f7b05d6d9ad9a345ac0a23f9d363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <gpio.h>
#include <reset.h>

#include "gpio.h"

void do_board_reset(void)
{
	gpio_output(GPIO_RESET, 1);
}