Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtl8712: remove dead function prototypes from rtl871x_recv.h

There is no implementation of these functions anywhere in the code.

Signed-off-by: Niklas Söderlund <niso@kth.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Niklas Söderlund and committed by
Greg Kroah-Hartman
d3bb3c1b 3009891c

-31
-31
drivers/staging/rtl8712/rtl871x_recv.h
··· 130 130 131 131 /* get a free recv_frame from pfree_recv_queue */ 132 132 union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue); 133 - union recv_frame *r8712_dequeue_recvframe(struct __queue *queue); 134 - int r8712_enqueue_recvframe(union recv_frame *precvframe, 135 - struct __queue *queue); 136 133 int r8712_free_recvframe(union recv_frame *precvframe, 137 134 struct __queue *pfree_recv_queue); 138 135 void r8712_free_recvframe_queue(struct __queue *pframequeue, 139 136 struct __queue *pfree_recv_queue); 140 - void r8712_init_recvframe(union recv_frame *precvframe, 141 - struct recv_priv *precvpriv); 142 137 int r8712_wlanhdr_to_ethhdr(union recv_frame *precvframe); 143 138 int recv_func(struct _adapter *padapter, void *pcontext); 144 139 ··· 213 218 union recv_frame *precv_frame); 214 219 union recv_frame *r8712_recvframe_chk_defrag(struct _adapter *adapter, 215 220 union recv_frame *precv_frame); 216 - union recv_frame *r8712_recvframe_defrag(struct _adapter *adapter, 217 - struct __queue *defrag_q); 218 - union recv_frame *r8712_recvframe_chk_defrag_new(struct _adapter *adapter, 219 - union recv_frame *precv_frame); 220 - union recv_frame *r8712_recvframe_defrag_new(struct _adapter *adapter, 221 - struct __queue *defrag_q, 222 - union recv_frame *precv_frame); 223 - int r8712_recv_decache(union recv_frame *precv_frame, u8 bretry, 224 - struct stainfo_rxcache *prxcache); 225 - int r8712_sta2sta_data_frame(struct _adapter *adapter, 226 - union recv_frame *precv_frame, 227 - struct sta_info **psta); 228 - int r8712_ap2sta_data_frame(struct _adapter *adapter, 229 - union recv_frame *precv_frame, 230 - struct sta_info **psta); 231 - int r8712_sta2ap_data_frame(struct _adapter *adapter, 232 - union recv_frame *precv_frame, 233 - struct sta_info **psta); 234 - int r8712_validate_recv_ctrl_frame(struct _adapter *adapter, 235 - union recv_frame *precv_frame); 236 - int r8712_validate_recv_mgnt_frame(struct _adapter *adapter, 237 - union recv_frame *precv_frame); 238 - int r8712_validate_recv_data_frame(struct _adapter *adapter, 239 - union recv_frame *precv_frame); 240 221 int r8712_validate_recv_frame(struct _adapter *adapter, 241 222 union recv_frame *precv_frame); 242 223 union recv_frame *r8712_portctrl(struct _adapter *adapter, 243 224 union recv_frame *precv_frame); 244 - void r8712_mgt_dispatcher(struct _adapter *padapter, u8 *pframe, uint len); 245 - int r8712_amsdu_to_msdu(struct _adapter *padapter, union recv_frame *prframe); 246 225 247 226 #endif 248 227