Commit 1d15f977 authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] Whitespace fixes.

No code changes, but lots of trivial whitespace cleaning, and
removal of a bogus set of 'defaults' at the bottom of the file.
parent 9c717ad2
...@@ -397,7 +397,7 @@ static int __init el3_probe(int card_idx) ...@@ -397,7 +397,7 @@ static int __init el3_probe(int card_idx)
if (pnp_device_attach(idev) < 0) if (pnp_device_attach(idev) < 0)
continue; continue;
if (pnp_activate_dev(idev) < 0) { if (pnp_activate_dev(idev) < 0) {
__again: __again:
pnp_device_detach(idev); pnp_device_detach(idev);
continue; continue;
} }
...@@ -612,7 +612,8 @@ static int __init el3_probe(int card_idx) ...@@ -612,7 +612,8 @@ static int __init el3_probe(int card_idx)
} }
#ifdef CONFIG_MCA #ifdef CONFIG_MCA
static int __init el3_mca_probe(struct device *device) { static int __init el3_mca_probe(struct device *device)
{
/* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch, /* Based on Erik Nygren's (nygren@mit.edu) 3c529 patch,
* heavily modified by Chris Beauregard * heavily modified by Chris Beauregard
* (cpbeaure@csclub.uwaterloo.ca) to support standard MCA * (cpbeaure@csclub.uwaterloo.ca) to support standard MCA
...@@ -810,7 +811,8 @@ el3_open(struct net_device *dev) ...@@ -810,7 +811,8 @@ el3_open(struct net_device *dev)
outw(SetStatusEnb | 0x00, ioaddr + EL3_CMD); outw(SetStatusEnb | 0x00, ioaddr + EL3_CMD);
i = request_irq(dev->irq, &el3_interrupt, 0, dev->name, dev); i = request_irq(dev->irq, &el3_interrupt, 0, dev->name, dev);
if (i) return i; if (i)
return i;
EL3WINDOW(0); EL3WINDOW(0);
if (el3_debug > 3) if (el3_debug > 3)
...@@ -1686,11 +1688,3 @@ static void __exit el3_cleanup_module(void) ...@@ -1686,11 +1688,3 @@ static void __exit el3_cleanup_module(void)
module_init (el3_init_module); module_init (el3_init_module);
module_exit (el3_cleanup_module); module_exit (el3_cleanup_module);
/*
* Local variables:
* compile-command: "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes -O6 -c 3c509.c"
* version-control: t
* kept-new-versions: 5
* tab-width: 4
* End:
*/
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment