summaryrefslogtreecommitdiffstats
path: root/src/drivers/generic/gpio_regulator/chip.h
blob: f3d1d0f86a4f65fc3d2d46a6ad917d77cd460ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __DRIVERS_GENERIC_GPIO_REGULATOR_H__
#define __DRIVERS_GENERIC_GPIO_REGULATOR_H__

#include <acpi/acpi_device.h>

struct drivers_generic_gpio_regulator_config {
	const char *name;
	struct acpi_gpio gpio;
	bool enabled_on_boot;
};

#endif /* __DRIVERS_GENERIC_GPIO_REGULATOR_H__ */