From 44bb3dc447c009c4c7f348c837c5f2d52acde69c Mon Sep 17 00:00:00 2001 From: Chien-Ming Chen Date: Mon, 9 Feb 2015 17:22:47 +0800 Subject: qcacld: usb: Add driver state information for USB device Add more state information about USB unloading. It helps to print out states during unloading. Change-Id: Ia44df47b551b37d5c0f8d77c94ad103da31c1c9c CRs-Fixed: 792999 --- CORE/SERVICES/HIF/USB/if_usb.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CORE/SERVICES/HIF/USB/if_usb.c b/CORE/SERVICES/HIF/USB/if_usb.c index 9ea0915670ca..a34dcdc1a149 100644 --- a/CORE/SERVICES/HIF/USB/if_usb.c +++ b/CORE/SERVICES/HIF/USB/if_usb.c @@ -232,6 +232,9 @@ static void hif_usb_remove(struct usb_interface *interface) */ if (!sc) return; + + pr_info("Try to remove hif_usb!\n"); + /* wait __hdd_wlan_exit until finished and no more than 4 seconds*/ while(atomic_read(&usb_sc->hdd_removed_processing) == 1 && usb_sc->hdd_removed_wait_cnt < 20) { @@ -283,6 +286,7 @@ static void hif_usb_remove(struct usb_interface *interface) pktlogmod_exit(scn); #endif __hdd_wlan_exit(); + pr_info("Exit HDD wlan... done by %s\n", __func__); } hif_nointrs(sc); @@ -504,6 +508,7 @@ void hif_unregister_driver(void) { if (is_usb_driver_register) { long timeleft = 0; + pr_info("Try to unregister hif_driver\n"); if (usb_sc != NULL) { /* wait __hdd_wlan_exit until finished and no more than * 4 seconds @@ -535,6 +540,7 @@ void hif_unregister_driver(void) pktlogmod_exit(usb_sc->ol_sc); #endif __hdd_wlan_exit(); + pr_info("Exit HDD wlan... done by %s\n", __func__); } atomic_set(&usb_sc->hdd_removed_processing, 0); } @@ -558,6 +564,7 @@ deregister: timeleft); finish: usb_unregister_notify(&hif_usb_dev_nb); + pr_info("hif_unregister_driver!!!!!!\n"); } } -- cgit v1.2.3 From 7b3632ce4b9ca9b663cbcf568d564bf93b317232 Mon Sep 17 00:00:00 2001 From: AnjaneeDevi Kapparapu Date: Wed, 11 Feb 2015 15:50:36 +0530 Subject: Cafstaging Release 4.0.10.32 Cafstaging Release 4.0.10.32 Change-Id: Ic80564c6dd34f747649485717210952f6893136e CRs-Fixed: 688141 --- CORE/MAC/inc/qwlan_version.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CORE/MAC/inc/qwlan_version.h b/CORE/MAC/inc/qwlan_version.h index c59d04026b25..da728e083c7e 100644 --- a/CORE/MAC/inc/qwlan_version.h +++ b/CORE/MAC/inc/qwlan_version.h @@ -42,9 +42,9 @@ BRIEF DESCRIPTION: #define QWLAN_VERSION_MINOR 0 #define QWLAN_VERSION_PATCH 10 #define QWLAN_VERSION_EXTRA "" -#define QWLAN_VERSION_BUILD 31 +#define QWLAN_VERSION_BUILD 32 -#define QWLAN_VERSIONSTR "4.0.10.31" +#define QWLAN_VERSIONSTR "4.0.10.32" #define AR6320_REV1_VERSION 0x5000000 -- cgit v1.2.3