diff options
| author | Thomas Gleixner <tglx@kernel.org> | 2026-01-24 02:17:48 +0300 |
|---|---|---|
| committer | Thomas Gleixner <tglx@kernel.org> | 2026-03-12 14:23:26 +0300 |
| commit | 2a14f7c5ee790d9e49ec7df8efa7eb9446028d7e (patch) | |
| tree | 9f38302a69609f288b231787e2dd1692a39d504b | |
| parent | 88c316ff7694ddf55d5a0fe42602ae83bee560aa (diff) | |
| download | linux-2a14f7c5ee790d9e49ec7df8efa7eb9446028d7e.tar.xz | |
parisc: Remove unused clocksource flags
PARISC does not enable the clocksource watchdog, so the VERIFY flags are
pointless as they are not evaluated. Remove them from the clocksource.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Acked-by: Helge Deller <deller@gmx.de>
Link: https://patch.msgid.link/20260123231521.655892451@kernel.org
| -rw-r--r-- | arch/parisc/kernel/time.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c index 94dc48455dc6..71c9d5426995 100644 --- a/arch/parisc/kernel/time.c +++ b/arch/parisc/kernel/time.c @@ -210,12 +210,9 @@ static struct clocksource clocksource_cr16 = { .read = read_cr16, .mask = CLOCKSOURCE_MASK(BITS_PER_LONG), .flags = CLOCK_SOURCE_IS_CONTINUOUS | - CLOCK_SOURCE_VALID_FOR_HRES | - CLOCK_SOURCE_MUST_VERIFY | - CLOCK_SOURCE_VERIFY_PERCPU, + CLOCK_SOURCE_VALID_FOR_HRES, }; - /* * timer interrupt and sched_clock() initialization */ |
