pinctrl-single.h 425 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _PINCTRL_SINGLE_H
  3. #define _PINCTRL_SINGLE_H
  4. /**
  5. * irq: optional wake-up interrupt
  6. * rearm: optional soc specific rearm function
  7. *
  8. * Note that the irq and rearm setup should come from device
  9. * tree except for omap where there are still some dependencies
  10. * to the legacy PRM code.
  11. */
  12. struct pcs_pdata {
  13. int irq;
  14. void (*rearm)(void);
  15. };
  16. #endif /* _PINCTRL_SINGLE_H */