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

Commit 91cd1756 authored by Dmitry Artamonow's avatar Dmitry Artamonow Committed by David S. Miller
Browse files

irda/sa1100_ir: check return value of startup hook

parent 85584672
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -232,8 +232,11 @@ static int sa1100_irda_startup(struct sa1100_irda *si)
	/*
	 * Ensure that the ports for this device are setup correctly.
	 */
	if (si->pdata->startup)
		si->pdata->startup(si->dev);
	if (si->pdata->startup)	{
		ret = si->pdata->startup(si->dev);
		if (ret)
			return ret;
	}

	/*
	 * Configure PPC for IRDA - we want to drive TXD2 low.