aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-01-05 15:44:13 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2009-01-06 13:52:40 -0800
commit8501d21fd2d4ce5449ea0141db3d8a7766523438 (patch)
tree614407b73d190285580d7326b2d43580143f114d /drivers/staging
parentStaging: epl: run Lindent on *.c files (diff)
downloadlinux-dev-8501d21fd2d4ce5449ea0141db3d8a7766523438.tar.xz
linux-dev-8501d21fd2d4ce5449ea0141db3d8a7766523438.zip
Staging: epl: hr timers all run in hard irq context now
Because of this, we can't set the mode for the timer, so delete this code as it causes a build error right now. Cc: Daniel Krueger <daniel.krueger@systec-electronic.com> Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/epl/TimerHighReskX86.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/epl/TimerHighReskX86.c b/drivers/staging/epl/TimerHighReskX86.c
index e1cb8238596c..82eee4702aa6 100644
--- a/drivers/staging/epl/TimerHighReskX86.c
+++ b/drivers/staging/epl/TimerHighReskX86.c
@@ -225,13 +225,6 @@ tEplKernel PUBLIC EplTimerHighReskAddInstance(void)
hrtimer_init(pTimer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
pTimer->function = EplTimerHighReskCallback;
-
- /*
- * We use HRTIMER_CB_SOFTIRQ here.
- * HRTIMER_CB_IRQSAFE is critical as the callback function
- * would be called with IRQs disabled.
- */
- pTimer->cb_mode = HRTIMER_CB_SOFTIRQ;
}
return Ret;