mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-11 03:48:00 +00:00
rtlwifi: Remove unused routine _usb_readN_sync
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
93a1df48d2
commit
970ba6a64d
@ -211,15 +211,6 @@ static int _usb_nbytes_read_write(struct usb_device *udev, bool read, u32 addr,
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int _usb_readN_sync(struct rtl_priv *rtlpriv, u32 addr, u16 len,
|
|
||||||
u8 *pdata)
|
|
||||||
{
|
|
||||||
struct device *dev = rtlpriv->io.dev;
|
|
||||||
|
|
||||||
return _usb_nbytes_read_write(to_usb_device(dev), true, addr, len,
|
|
||||||
pdata);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int _usb_writeN_async(struct rtl_priv *rtlpriv, u32 addr, u16 len,
|
static int _usb_writeN_async(struct rtl_priv *rtlpriv, u32 addr, u16 len,
|
||||||
u8 *pdata)
|
u8 *pdata)
|
||||||
{
|
{
|
||||||
@ -243,7 +234,6 @@ static void _rtl_usb_io_handler_init(struct device *dev,
|
|||||||
rtlpriv->io.read8_sync = _usb_read8_sync;
|
rtlpriv->io.read8_sync = _usb_read8_sync;
|
||||||
rtlpriv->io.read16_sync = _usb_read16_sync;
|
rtlpriv->io.read16_sync = _usb_read16_sync;
|
||||||
rtlpriv->io.read32_sync = _usb_read32_sync;
|
rtlpriv->io.read32_sync = _usb_read32_sync;
|
||||||
rtlpriv->io.readN_sync = _usb_readN_sync;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _rtl_usb_io_handler_release(struct ieee80211_hw *hw)
|
static void _rtl_usb_io_handler_release(struct ieee80211_hw *hw)
|
||||||
|
@ -950,8 +950,6 @@ struct rtl_io {
|
|||||||
u8(*read8_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
u8(*read8_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
||||||
u16(*read16_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
u16(*read16_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
||||||
u32(*read32_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
u32(*read32_sync) (struct rtl_priv *rtlpriv, u32 addr);
|
||||||
int (*readN_sync) (struct rtl_priv *rtlpriv, u32 addr, u16 len,
|
|
||||||
u8 *pdata);
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user