net: wireless: bcmdhd: Set interface name to 'wlan' by default
authorDmitry Shmidt <dimitrysh@google.com>
Thu, 30 Jun 2011 21:05:42 +0000 (14:05 -0700)
committermgross <mark.gross@intel.com>
Wed, 9 Nov 2011 20:09:39 +0000 (12:09 -0800)
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
drivers/net/wireless/bcmdhd/wl_android.c

index 196ccf3..3d6047d 100644 (file)
@@ -82,6 +82,9 @@ int net_os_set_suspend_disable(struct net_device *dev, int val);
 int net_os_set_suspend(struct net_device *dev, int val);
 
 extern bool ap_fw_loaded;
+#ifdef CUSTOMER_HW2
+extern char iface_name[IFNAMSIZ];
+#endif
 
 /**
  * Local (static) functions and variables
@@ -333,6 +336,10 @@ int wl_android_init(void)
 #ifdef ENABLE_INSMOD_NO_FW_LOAD
        dhd_download_fw_on_driverload = FALSE;
 #endif /* ENABLE_INSMOD_NO_FW_LOAD */
+#ifdef CUSTOMER_HW2
+       if (!iface_name[0])
+               bcm_strncpy_s(iface_name, IFNAMSIZ, "wlan", IFNAMSIZ);
+#endif /* CUSTOMER_HW2 */
        return ret;
 }