mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 00:38:55 +00:00
Staging: rtl8192su: remove all code dependent on LINUX_VERSION_CODE
Remove all code which is dead for in-kernel driver due to being ifdefed by LINUX_VERSION_CODE. While at it, also remove surrounding code which is commented out, or '#if 1' nops. Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5749df14ae
commit
bb71770cdb
@ -1087,22 +1087,13 @@ BlinkTimerCallback(
|
||||
struct net_device *dev = (struct net_device *)data;
|
||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||
|
||||
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0)
|
||||
schedule_work(&(priv->BlinkWorkItem));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,20)
|
||||
void BlinkWorkItemCallback(struct work_struct *work)
|
||||
{
|
||||
struct r8192_priv *priv = container_of(work, struct r8192_priv, BlinkWorkItem);
|
||||
#else
|
||||
void BlinkWorkItemCallback(void * Context)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)Context;
|
||||
struct r8192_priv *priv = ieee80211_priv(dev);
|
||||
#endif
|
||||
|
||||
PLED_819xUsb pLed = priv->pLed;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user