summaryrefslogtreecommitdiff
path: root/drivers/staging/cxt1e1/functions.c
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2010-05-26 13:39:04 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2010-06-18 15:16:21 -0700
commit5749df14aef6d3fd7146f17e4f0c61526a53766e (patch)
tree06f558caf322e523aa2a266afd66087864dd66e4 /drivers/staging/cxt1e1/functions.c
parent41a38d9e632f7c9ec5ad8fc627567d97f4302c4a (diff)
Staging: cxt1e1: 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>
Diffstat (limited to 'drivers/staging/cxt1e1/functions.c')
-rw-r--r--drivers/staging/cxt1e1/functions.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/staging/cxt1e1/functions.c b/drivers/staging/cxt1e1/functions.c
index 86b498090265..23ea101d7a89 100644
--- a/drivers/staging/cxt1e1/functions.c
+++ b/drivers/staging/cxt1e1/functions.c
@@ -122,19 +122,7 @@ watchdog_func (unsigned long arg)
pr_warning("%s: drvr not available (%x)\n", __func__, drvr_state);
return;
}
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)
- /* Initialize the tq entry only the first time */
- if (wd->init_tq)
- {
- wd->init_tq = 0;
- wd->tq.routine = wd->func;
- wd->tq.sync = 0;
- wd->tq.data = wd->softc;
- }
- schedule_task (&wd->tq);
-#else
schedule_work (&wd->work);
-#endif
mod_timer (&wd->h, jiffies + wd->ticks);
}