1
0
Fork 0

staging: rtl8723au: Remove unused rtw_adapter * from struct intf_hdl

struct intf_hdl is now purely a wrapper around struct _io_ops, so we
can get rid of it in the next patch.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Jes Sorensen 2014-04-26 18:55:32 +02:00 committed by Greg Kroah-Hartman
parent 45c64aa030
commit 64cb819b06
2 changed files with 0 additions and 4 deletions

View File

@ -827,8 +827,6 @@ void rtl8723au_set_intf_ops(struct rtw_adapter *padapter)
struct intf_hdl *pintf = &padapter->intf;
struct _io_ops *pops = &pintf->io_ops;
pintf->padapter = padapter;
memset((u8 *)pops, 0, sizeof(struct _io_ops));
pops->_read8 = &usb_read8;

View File

@ -136,8 +136,6 @@ struct io_req {
};
struct intf_hdl {
struct rtw_adapter *padapter;
struct _io_ops io_ops;
};