]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: remove host_int_get_pmkid_info
authorChaehyun Lim <chaehyun.lim@gmail.com>
Sun, 8 Nov 2015 07:49:18 +0000 (16:49 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Dec 2015 22:14:03 +0000 (14:14 -0800)
This patch removes host_int_get_pmkid_info function definition and
declaration that is defined at host_interface.c and host_interface.h.
This function is defined but not used anywhere in this driver so just
remove it.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index 51b6ddb821f76526e570c62e283b1e2bebb2940a..601558282ac4232e66ddff7d3d71af08600a9e93 100644 (file)
@@ -3373,20 +3373,6 @@ s32 host_int_set_pmkid_info(struct host_if_drv *hif_drv, struct host_if_pmkid_at
        return result;
 }
 
-s32 host_int_get_pmkid_info(struct host_if_drv *hif_drv,
-                           u8 *pu8PmkidInfoArray,
-                           u32 u32PmkidInfoLen)
-{
-       struct wid wid;
-
-       wid.id = (u16)WID_PMKID_INFO;
-       wid.type = WID_STR;
-       wid.size = u32PmkidInfoLen;
-       wid.val = pu8PmkidInfoArray;
-
-       return 0;
-}
-
 s32 host_int_set_RSNAConfigPSKPassPhrase(struct host_if_drv *hif_drv,
                                         u8 *pu8PassPhrase,
                                         u8 u8Psklength)
index 91fbfa6493ccfb7555ec418ac74dd31c42f2a8d6..dd5a14a222d5d9ec703283f130a751ae9c31091e 100644 (file)
@@ -324,8 +324,6 @@ int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
                        u8 mode, u8 cipher_mode);
 s32 host_int_set_pmkid_info(struct host_if_drv *hWFIDrv,
                            struct host_if_pmkid_attr *pu8PmkidInfoArray);
-s32 host_int_get_pmkid_info(struct host_if_drv *hWFIDrv, u8 *pu8PmkidInfoArray,
-                           u32 u32PmkidInfoLen);
 s32 host_int_set_RSNAConfigPSKPassPhrase(struct host_if_drv *hWFIDrv,
                                         u8 *pu8PassPhrase,
                                         u8 u8Psklength);