old mode 100644new mode 100755| .. | .. |
|---|
| 67 | 67 | /* dongle status */ |
|---|
| 68 | 68 | enum wifi_adapter_status { |
|---|
| 69 | 69 | WIFI_STATUS_POWER_ON = 0, |
|---|
| 70 | + WIFI_STATUS_ATTACH, |
|---|
| 70 | 71 | WIFI_STATUS_FW_READY, |
|---|
| 71 | | - WIFI_STATUS_NET_ATTACHED, |
|---|
| 72 | | - WIFI_STATUS_BUS_DISCONNECTED |
|---|
| 72 | + WIFI_STATUS_DETTACH |
|---|
| 73 | 73 | }; |
|---|
| 74 | 74 | #define wifi_chk_adapter_status(adapter, stat) (test_bit(stat, &(adapter)->status)) |
|---|
| 75 | 75 | #define wifi_get_adapter_status(adapter, stat) (test_bit(stat, &(adapter)->status)) |
|---|
| .. | .. |
|---|
| 109 | 109 | struct pci_dev *pci_dev; |
|---|
| 110 | 110 | struct pci_saved_state *pci_saved_state; |
|---|
| 111 | 111 | #endif /* BCMPCIE */ |
|---|
| 112 | | -#ifdef BCMDHD_PLATDEV |
|---|
| 113 | | - struct platform_device *pdev; |
|---|
| 114 | | -#endif /* BCMDHD_PLATDEV */ |
|---|
| 115 | 112 | } wifi_adapter_info_t; |
|---|
| 116 | 113 | |
|---|
| 117 | 114 | #if defined(CONFIG_WIFI_CONTROL_FUNC) || defined(CUSTOMER_HW4) |
|---|