mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-17 17:25:09 +00:00
Instead of using platform data to specify GPIO that is used as interrupt source, rely on the platform and I2C core to set it up properly. Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20210603043726.3793876-1-dmitry.torokhov@gmail.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
11 lines
211 B
C
11 lines
211 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_CY8CTMG110_PDATA_H
|
|
#define _LINUX_CY8CTMG110_PDATA_H
|
|
|
|
struct cy8ctmg110_pdata
|
|
{
|
|
int reset_pin; /* Reset pin is wired to this GPIO (optional) */
|
|
};
|
|
|
|
#endif
|