Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
9struct 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
18struct dwapb_platform_data {
19 struct dwapb_port_property *properties;
20 unsigned int nports;
21};
22
23#endif