From patchwork Tue Sep 11 12:52:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Remove unused function warning in WPS NFC case Date: Tue, 11 Sep 2012 02:52:01 -0000 From: Masashi Honma X-Patchwork-Id: 183105 Message-Id: To: hostap ML When I use CONFIG_WPS_NFC=y a warning appears. wps_supplicant.c:1872:12: warning: 'wpas_wps_add_nfc_password_token' defined but not used [-Wunused-function] This patch removes this warning. Signed-hostap: Masashi Honma static int wpas_wps_nfc_tag_process(struct wpa_supplicant *wpa_s, Regards, Masashi Honma. diff --git a/wpa_supplicant/wps_supplicant.c b/wpa_supplicant/wps_supplicant.c index 130f3ab..915ca57 100644 --- a/wpa_supplicant/wps_supplicant.c +++ b/wpa_supplicant/wps_supplicant.c @@ -1869,6 +1869,7 @@ static int wpas_wps_use_cred(struct wpa_supplicant *wpa_s, } +#ifdef CONFIG_WPS_ER static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s, struct wps_parse_attr *attr) { @@ -1876,6 +1877,7 @@ static int wpas_wps_add_nfc_password_token(struct wpa_supplicant *wpa_s, wpa_s->wps->registrar, attr->oob_dev_password, attr->oob_dev_password_len); } +#endif /* CONFIG_WPS_ER */