Commit e2871169 authored by Jeff Garzik's avatar Jeff Garzik

Fix typo in aironet4500 net driver return value, s/NODEV/-ENODEV/,

which prevented the driver from building.

Via Dave Jones.
parent 386e9189
...@@ -2836,7 +2836,7 @@ char name[] = "ElmerLinux"; ...@@ -2836,7 +2836,7 @@ char name[] = "ElmerLinux";
return 0; return 0;
final: final:
printk(KERN_ERR "aironet init failed \n"); printk(KERN_ERR "aironet init failed \n");
return NODEV; return -ENODEV;
}; };
......
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