cs89x0: Always report failure to request interrupt

A failure on request_irq() is always fatal but unlike other fatal
errors it's only reported to the user if net_debug is set. Make the
diagnostic unconditional and raise the priority so that errors are
more obvious to the user.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Mark Brown and committed by
David S. Miller
569b7892 8a5c9c49

+1 -2
+1 -2
drivers/net/cs89x0.c
··· 1325 1325 write_irq(dev, lp->chip_type, dev->irq); 1326 1326 ret = request_irq(dev->irq, net_interrupt, 0, dev->name, dev); 1327 1327 if (ret) { 1328 - if (net_debug) 1329 - printk(KERN_DEBUG "cs89x0: request_irq(%d) failed\n", dev->irq); 1328 + printk(KERN_ERR "cs89x0: request_irq(%d) failed\n", dev->irq); 1330 1329 goto bad_out; 1331 1330 } 1332 1331 }