Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bdd3460f authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename pJoinParams in CfgScanResult function



This patch renames pJoinParams to join_params that is
fourth argument of CfgScanResult function to avoid camelcase.

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 30cd10c4
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ static void add_network_to_shadow(tstrNetworkInfo *pstrNetworkInfo,
static void CfgScanResult(enum scan_event scan_event,
			  tstrNetworkInfo *network_info,
			  void *user_void,
			  void *pJoinParams)
			  void *join_params)
{
	struct wilc_priv *priv;
	struct wiphy *wiphy;
@@ -461,12 +461,9 @@ static void CfgScanResult(enum scan_event scan_event,
						PRINT_D(CFG80211_DBG, "Network %s found\n", network_info->au8ssid);
						priv->u32RcvdChCount++;



						if (pJoinParams == NULL) {
						if (!join_params)
							PRINT_INFO(CORECONFIG_DBG, ">> Something really bad happened\n");
						}
						add_network_to_shadow(network_info, priv, pJoinParams);
						add_network_to_shadow(network_info, priv, join_params);

						/*P2P peers are sent to WPA supplicant and added to shadow table*/
						if (!(memcmp("DIRECT-", network_info->au8ssid, 7))) {