Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 771c577c23bac90597c685971d7297ea00f99d11 authored by Linus Torvalds on 20 May 2018, 22:31:38 UTC
Linux 4.17-rc6
Tip revision: 771c577
pinctrl-single.h
/* SPDX-License-Identifier: GPL-2.0 */
/**
 * irq:		optional wake-up interrupt
 * rearm:	optional soc specific rearm function
 *
 * Note that the irq and rearm setup should come from device
 * tree except for omap where there are still some dependencies
 * to the legacy PRM code.
 */
struct pcs_pdata {
	int irq;
	void (*rearm)(void);
};
back to top