26 lines
824 B
Diff
26 lines
824 B
Diff
|
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
|
||
|
index 2be46cb9357..a77e015eb77 100644
|
||
|
--- a/kernel/hrtimer.c
|
||
|
+++ b/kernel/hrtimer.c
|
||
|
@@ -87,9 +87,6 @@ DEFINE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases) =
|
||
|
};
|
||
|
|
||
|
static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
|
||
|
- /* Make sure we catch unsupported clockids */
|
||
|
- [0 ... MAX_CLOCKS - 1] = HRTIMER_MAX_CLOCK_BASES,
|
||
|
-
|
||
|
[CLOCK_REALTIME] = HRTIMER_BASE_REALTIME,
|
||
|
[CLOCK_MONOTONIC] = HRTIMER_BASE_MONOTONIC,
|
||
|
[CLOCK_BOOTTIME] = HRTIMER_BASE_BOOTTIME,
|
||
|
@@ -97,9 +94,7 @@ static const int hrtimer_clock_to_base_table[MAX_CLOCKS] = {
|
||
|
|
||
|
static inline int hrtimer_clockid_to_base(clockid_t clock_id)
|
||
|
{
|
||
|
- int base = hrtimer_clock_to_base_table[clock_id];
|
||
|
- BUG_ON(base == HRTIMER_MAX_CLOCK_BASES);
|
||
|
- return base;
|
||
|
+ return hrtimer_clock_to_base_table[clock_id];
|
||
|
}
|
||
|
|
||
|
|