Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db874c7e authored by Tony Lindgren's avatar Tony Lindgren Committed by Rafael J. Wysocki
Browse files

PM / wakeirq: Fix typo in prototype for dev_pm_set_dedicated_wake_irq



Looks like I only built test the dev_pm_set_wake_irq and not the
dev_pm_set_dedicated_wake_irq case on x86.

Turns out there's a typo for the dev_pm_set_dedicated_wake_irq
prototype that causes a build error if CONFIG_COMPILE_TEST
and CONFIG_MMC_OMAP_HS are selected.

Reported-by: default avatarJim Davis <jim.epost@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
Reviewed-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 4990d4fe
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -30,8 +30,7 @@ static inline int dev_pm_set_wake_irq(struct device *dev, int irq)
	return 0;
}

static inline int dev_pm_set_dedicated__wake_irq(struct device *dev,
						 int irq)
static inline int dev_pm_set_dedicated_wake_irq(struct device *dev, int irq)
{
	return 0;
}