staging: rtl8188eu: Remove unused function rtw_list_insert_head()
authornavin patidar <navin.patidar@gmail.com>
Sun, 22 Jun 2014 08:19:30 +0000 (13:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2014 00:27:12 +0000 (20:27 -0400)
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/osdep_service.h
drivers/staging/rtl8188eu/os_dep/osdep_service.c

index e5bfdd71f01537103998ff1ed9aff09d797bdce2..05cc35289201a45e7622dcefd146e22ba512d91b 100644 (file)
@@ -201,7 +201,6 @@ void _rtw_memcpy(void *dec, void *sour, u32 sz);
 
 void _rtw_init_listhead(struct list_head *list);
 u32  rtw_is_list_empty(struct list_head *phead);
-void rtw_list_insert_head(struct list_head *plist, struct list_head *phead);
 void rtw_list_insert_tail(struct list_head *plist, struct list_head *phead);
 void rtw_list_delete(struct list_head *plist);
 
index 92203c3359f6bcceba2a2847e4b2d5a0665035a5..8067f9c642f00ba92fb253179642e8ae5f0777d7 100644 (file)
@@ -107,11 +107,6 @@ u32        rtw_is_list_empty(struct list_head *phead)
                return false;
 }
 
-void rtw_list_insert_head(struct list_head *plist, struct list_head *phead)
-{
-       list_add(plist, phead);
-}
-
 void rtw_list_insert_tail(struct list_head *plist, struct list_head *phead)
 {
        list_add_tail(plist, phead);
This page took 0.026408 seconds and 5 git commands to generate.