30 lines
510 B
C
30 lines
510 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
/*
|
||
|
* GPIO definitions for NCA9555
|
||
|
*
|
||
|
* Copyright (C) 2023 RPDZKJ
|
||
|
*/
|
||
|
|
||
|
#ifndef _DT_BINDINGS_NCA9555_GPIO_H
|
||
|
#define _DT_BINDINGS_NCA9555_GPIO_H
|
||
|
|
||
|
#define IO_00 0
|
||
|
#define IO_01 1
|
||
|
#define IO_02 2
|
||
|
#define IO_03 3
|
||
|
#define IO_04 4
|
||
|
#define IO_05 5
|
||
|
#define IO_06 6
|
||
|
#define IO_07 7
|
||
|
|
||
|
#define IO_10 8
|
||
|
#define IO_11 9
|
||
|
#define IO_12 10
|
||
|
#define IO_13 11
|
||
|
#define IO_14 12
|
||
|
#define IO_15 13
|
||
|
#define IO_16 14
|
||
|
#define IO_17 15
|
||
|
|
||
|
#endif /* _DT_BINDINGS_NCA9555_GPIO_H */
|