summaryrefslogtreecommitdiffstats
path: root/src/drivers/generic/gpio_regulator/chip.h
blob: 4d9e3ceb35ca2b9190a825ff577c3d4b6b29a7a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */

#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__ */