Sfoglia il codice sorgente

qcacld-3.0: Replace hdd_adapter_t in wlan_hdd_subnet_detect.c

The Linux Coding Style enumerates a few special cases where typedefs
are useful, but stresses "NEVER EVER use a typedef unless you can
clearly match one of those rules." The hdd_adapter_t typedef does not
meet any of those criteria, so replace references to it with a
reference to the underlying struct.

Change-Id: I66f20697851fdace617463b068c38ba63f4a07e0
CRs-Fixed: 2101033
Jeff Johnson 7 anni fa
parent
commit
b4fc39b13f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      core/hdd/src/wlan_hdd_subnet_detect.c

+ 1 - 1
core/hdd/src/wlan_hdd_subnet_detect.c

@@ -74,7 +74,7 @@ static int __wlan_hdd_cfg80211_set_gateway_params(struct wiphy *wiphy,
 		int data_len)
 {
 	struct net_device *dev = wdev->netdev;
-	hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
+	struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
 	struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
 	struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_GW_PARAM_CONFIG_MAX + 1];
 	struct gateway_param_update_req req = { 0 };