netx-eth: initialize per device spinlock

The spinlock used in the netx-eth driver was never properly initialized.
This was noticed using CONFIG_DEBUG_SPINLOCK=y

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Uwe Kleine-König and committed by David S. Miller 2cc002c4 f8269a49

+2
+2
drivers/net/netx-eth.c
··· 401 401 priv->xmac_base = priv->xc->xmac_base; 402 402 priv->sram_base = priv->xc->sram_base; 403 403 404 + spin_lock_init(&priv->lock); 405 + 404 406 ret = pfifo_request(PFIFO_MASK(priv->id)); 405 407 if (ret) { 406 408 printk("unable to request PFIFO\n");