]> Git Repo - linux.git/blob - include/linux/platform_data/gpio-dwapb.h
Merge remote-tracking branch 'spi/for-5.9' into spi-linus
[linux.git] / include / linux / platform_data / gpio-dwapb.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright(c) 2014 Intel Corporation.
4  */
5
6 #ifndef GPIO_DW_APB_H
7 #define GPIO_DW_APB_H
8
9 struct dwapb_port_property {
10         struct fwnode_handle *fwnode;
11         unsigned int    idx;
12         unsigned int    ngpio;
13         unsigned int    gpio_base;
14         int             irq[32];
15         bool            irq_shared;
16 };
17
18 struct dwapb_platform_data {
19         struct dwapb_port_property *properties;
20         unsigned int nports;
21 };
22
23 #endif
This page took 0.033006 seconds and 4 git commands to generate.