Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 
0003 #ifndef _PINCTRL_SINGLE_H
0004 #define _PINCTRL_SINGLE_H
0005 
0006 /**
0007  * irq:     optional wake-up interrupt
0008  * rearm:   optional soc specific rearm function
0009  *
0010  * Note that the irq and rearm setup should come from device
0011  * tree except for omap where there are still some dependencies
0012  * to the legacy PRM code.
0013  */
0014 struct pcs_pdata {
0015     int irq;
0016     void (*rearm)(void);
0017 };
0018 
0019 #endif /* _PINCTRL_SINGLE_H */