xref: /aosp_15_r20/external/gsc-utils/include/gpio_signal.h (revision 4f2df630800bdcf1d4f0decf95d8a1cb87344f5f)
1 /* Copyright 2014 The ChromiumOS Authors
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 
6 #ifndef __CROS_EC_GPIO_SIGNAL_H
7 #define __CROS_EC_GPIO_SIGNAL_H
8 
9 #define GPIO(name, pin, flags)		   GPIO_##name,
10 #define UNIMPLEMENTED(name)		   GPIO_##name,
11 #define GPIO_INT(name, pin, flags, signal) GPIO_##name,
12 
13 enum gpio_signal {
14 #include "gpio.wrap"
15 	GPIO_COUNT
16 };
17 
18 #endif /* __CROS_EC_GPIO_SIGNAL_H */
19