blob: 1cf36fdf9510df9285186f3bb532328272f11d21 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Tony Lindgrendc7743a2013-10-02 21:39:40 -07002/**
3 * irq: optional wake-up interrupt
4 * rearm: optional soc specific rearm function
5 *
6 * Note that the irq and rearm setup should come from device
7 * tree except for omap where there are still some dependencies
8 * to the legacy PRM code.
9 */
10struct pcs_pdata {
11 int irq;
12 void (*rearm)(void);
13};