mirror of https://gitee.com/openkylin/linux.git
staging: brcm80211: move assert function to dhd_linux.c
The source file wl_iw.c is primarily intended to provide wireless extensions functionality, which is to be removed from the driver. The assert function is moved to another source file. Signed-off-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Roland Vossen <rvossen@broadcom.com> Reviewed-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
f10c5b0b41
commit
47a6d2cdc7
|
@ -46,6 +46,9 @@
|
||||||
#define EPI_VERSION_STR "4.218.248.5"
|
#define EPI_VERSION_STR "4.218.248.5"
|
||||||
#define ETH_P_BRCM 0x886c
|
#define ETH_P_BRCM 0x886c
|
||||||
|
|
||||||
|
/* Global ASSERT type flag */
|
||||||
|
u32 g_assert_type;
|
||||||
|
|
||||||
#if defined(CUSTOMER_HW2) && defined(CONFIG_WIFI_CONTROL_FUNC)
|
#if defined(CUSTOMER_HW2) && defined(CONFIG_WIFI_CONTROL_FUNC)
|
||||||
#include <linux/wifi_tiwlan.h>
|
#include <linux/wifi_tiwlan.h>
|
||||||
|
|
||||||
|
@ -2766,3 +2769,50 @@ int write_to_file(dhd_pub_t *dhd, u8 *buf, int size)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* DHD_DEBUG */
|
||||||
|
|
||||||
|
#if defined(BCMDBG)
|
||||||
|
void osl_assert(char *exp, char *file, int line)
|
||||||
|
{
|
||||||
|
char tempbuf[256];
|
||||||
|
char *basename;
|
||||||
|
|
||||||
|
basename = strrchr(file, '/');
|
||||||
|
/* skip the '/' */
|
||||||
|
if (basename)
|
||||||
|
basename++;
|
||||||
|
|
||||||
|
if (!basename)
|
||||||
|
basename = file;
|
||||||
|
|
||||||
|
snprintf(tempbuf, 256,
|
||||||
|
"assertion \"%s\" failed: file \"%s\", line %d\n", exp,
|
||||||
|
basename, line);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Print assert message and give it time to
|
||||||
|
* be written to /var/log/messages
|
||||||
|
*/
|
||||||
|
if (!in_interrupt()) {
|
||||||
|
const int delay = 3;
|
||||||
|
printk(KERN_ERR "%s", tempbuf);
|
||||||
|
printk(KERN_ERR "panic in %d seconds\n", delay);
|
||||||
|
set_current_state(TASK_INTERRUPTIBLE);
|
||||||
|
schedule_timeout(delay * HZ);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (g_assert_type) {
|
||||||
|
case 0:
|
||||||
|
panic(KERN_ERR "%s", tempbuf);
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
printk(KERN_ERR "%s", tempbuf);
|
||||||
|
BUG();
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
printk(KERN_ERR "%s", tempbuf);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif /* defined(BCMDBG) */
|
||||||
|
|
|
@ -130,9 +130,6 @@ typedef enum sup_auth_status {
|
||||||
|
|
||||||
static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
|
static const u8 ether_bcast[ETH_ALEN] = {255, 255, 255, 255, 255, 255};
|
||||||
|
|
||||||
/* Global ASSERT type flag */
|
|
||||||
u32 g_assert_type;
|
|
||||||
|
|
||||||
static void wl_iw_timerfunc(unsigned long data);
|
static void wl_iw_timerfunc(unsigned long data);
|
||||||
static void wl_iw_set_event_mask(struct net_device *dev);
|
static void wl_iw_set_event_mask(struct net_device *dev);
|
||||||
static int wl_iw_iscan(iscan_info_t *iscan, wlc_ssid_t *ssid, u16 action);
|
static int wl_iw_iscan(iscan_info_t *iscan, wlc_ssid_t *ssid, u16 action);
|
||||||
|
@ -3659,53 +3656,5 @@ void wl_iw_detach(void)
|
||||||
#endif /* WL_IW_USE_ISCAN */
|
#endif /* WL_IW_USE_ISCAN */
|
||||||
|
|
||||||
kfree(g_scan);
|
kfree(g_scan);
|
||||||
|
|
||||||
g_scan = NULL;
|
g_scan = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(BCMDBG)
|
|
||||||
void osl_assert(char *exp, char *file, int line)
|
|
||||||
{
|
|
||||||
char tempbuf[256];
|
|
||||||
char *basename;
|
|
||||||
|
|
||||||
basename = strrchr(file, '/');
|
|
||||||
/* skip the '/' */
|
|
||||||
if (basename)
|
|
||||||
basename++;
|
|
||||||
|
|
||||||
if (!basename)
|
|
||||||
basename = file;
|
|
||||||
|
|
||||||
snprintf(tempbuf, 256,
|
|
||||||
"assertion \"%s\" failed: file \"%s\", line %d\n", exp,
|
|
||||||
basename, line);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Print assert message and give it time to
|
|
||||||
* be written to /var/log/messages
|
|
||||||
*/
|
|
||||||
if (!in_interrupt()) {
|
|
||||||
const int delay = 3;
|
|
||||||
printk(KERN_ERR "%s", tempbuf);
|
|
||||||
printk(KERN_ERR "panic in %d seconds\n", delay);
|
|
||||||
set_current_state(TASK_INTERRUPTIBLE);
|
|
||||||
schedule_timeout(delay * HZ);
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (g_assert_type) {
|
|
||||||
case 0:
|
|
||||||
panic(KERN_ERR "%s", tempbuf);
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
printk(KERN_ERR "%s", tempbuf);
|
|
||||||
BUG();
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
printk(KERN_ERR "%s", tempbuf);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif /* defined(BCMDBG) */
|
|
||||||
|
|
Loading…
Reference in New Issue