mac80211: move netdev queue enabling to correct spot
[safe/jmp/linux-2.6] / net / ipv4 / ipconfig.c
index f8d04c2..10a6a60 100644 (file)
@@ -1172,10 +1172,9 @@ static int __init ic_dynamic(void)
                        schedule_timeout_uninterruptible(1);
 #ifdef IPCONFIG_DHCP
                /* DHCP isn't done until we get a DHCPACK. */
-               if ((ic_got_reply & IC_BOOTP)
-                   && (ic_proto_enabled & IC_USE_DHCP)
-                   && ic_dhcp_msgtype != DHCPACK)
-               {
+               if ((ic_got_reply & IC_BOOTP) &&
+                   (ic_proto_enabled & IC_USE_DHCP) &&
+                   ic_dhcp_msgtype != DHCPACK) {
                        ic_got_reply = 0;
                        printk(",");
                        continue;
@@ -1344,9 +1343,9 @@ static int __init ip_auto_config(void)
         */
        if (ic_myaddr == NONE ||
 #ifdef CONFIG_ROOT_NFS
-           (root_server_addr == NONE
-            && ic_servaddr == NONE
-            && ROOT_DEV == Root_NFS) ||
+           (root_server_addr == NONE &&
+            ic_servaddr == NONE &&
+            ROOT_DEV == Root_NFS) ||
 #endif
            ic_first_dev->next) {
 #ifdef IPCONFIG_DYNAMIC
@@ -1447,7 +1446,7 @@ late_initcall(ip_auto_config);
 
 /*
  *  Decode any IP configuration options in the "ip=" or "nfsaddrs=" kernel
- *  command line parameter.  See Documentation/filesystems/nfsroot.txt.
+ *  command line parameter.  See Documentation/filesystems/nfs/nfsroot.txt.
  */
 static int __init ic_proto_name(char *name)
 {