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

Commit 88a15f2e authored by Emil Medve's avatar Emil Medve Committed by Jeff Garzik
Browse files

ucc_geth: Fix build break introduced by commit 09f75cd7



drivers/net/ucc_geth.c: In function 'ucc_geth_rx':
drivers/net/ucc_geth.c:3483: error: 'dev' undeclared (first use in this function)
drivers/net/ucc_geth.c:3483: error: (Each undeclared identifier is reported only once
drivers/net/ucc_geth.c:3483: error: for each function it appears in.)
make[2]: *** [drivers/net/ucc_geth.o] Error 1

Signed-off-by: default avatarEmil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 293c8513
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3454,9 +3454,12 @@ static int ucc_geth_rx(struct ucc_geth_private *ugeth, u8 rxQ, int rx_work_limit
	u16 length, howmany = 0;
	u32 bd_status;
	u8 *bdBuffer;
	struct net_device * dev;

	ugeth_vdbg("%s: IN", __FUNCTION__);

	dev = ugeth->dev;

	/* collect received buffers */
	bd = ugeth->rxBd[rxQ];