qcacld-3.0: Fix kernel checkpatch warnings in wlan_hdd_assoc.h

Fix kernel checkpatch warnings in wlan_hdd_assoc.h.

Change-Id: Ia819c42b979964f825923f3060b68daef8d22dbb
CRs-Fixed: 2024274
这个提交包含在:
Srinivas Girigowda
2017-03-25 15:14:01 -07:00
提交者 Sandeep Puligilla
父节点 4859267ee1
当前提交 72136691fe

查看文件

@@ -83,14 +83,14 @@ typedef enum {
} eConnectionState; } eConnectionState;
/** /**
* typedef ePeerStatus - Peer status * enum peer_status - Peer status
* @ePeerConnected: peer connected * @ePeerConnected: peer connected
* @ePeerDisconnected: peer disconnected * @ePeerDisconnected: peer disconnected
*/ */
typedef enum { enum peer_status {
ePeerConnected = 1, ePeerConnected = 1,
ePeerDisconnected ePeerDisconnected
} ePeerStatus; };
/** /**
* struct hdd_conn_flag - connection flags * struct hdd_conn_flag - connection flags
@@ -211,7 +211,6 @@ typedef struct hdd_adapter_s hdd_adapter_t;
typedef struct hdd_context_s hdd_context_t; typedef struct hdd_context_s hdd_context_t;
typedef struct hdd_station_ctx hdd_station_ctx_t; typedef struct hdd_station_ctx hdd_station_ctx_t;
typedef struct hdd_ap_ctx_s hdd_ap_ctx_t; typedef struct hdd_ap_ctx_s hdd_ap_ctx_t;
typedef struct hdd_mon_ctx_s hdd_mon_ctx_t;
/** /**
* hdd_is_connecting() - Function to check connection progress * hdd_is_connecting() - Function to check connection progress