]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
hrtimer: Remove trailing comma after HRTIMER_MAX_CLOCK_BASES
authorThomas Weißschuh (Schneider Electric) <thomas.weissschuh@linutronix.de>
Wed, 11 Mar 2026 10:15:20 +0000 (11:15 +0100)
committerThomas Gleixner <tglx@kernel.org>
Thu, 12 Mar 2026 11:15:55 +0000 (12:15 +0100)
HRTIMER_MAX_CLOCK_BASES is required to stay the last value of the enum.

Drop the trailing comma so no new members are added after it by mistake.

Signed-off-by: Thomas Weißschuh (Schneider Electric) <thomas.weissschuh@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20260311-hrtimer-cleanups-v1-11-095357392669@linutronix.de
include/linux/hrtimer_defs.h

index a03240c0b14f8f56dd58b4330d8184c75b905092..52ed9e46ff136eec130e7f27d0e9d86352b3f326 100644 (file)
@@ -44,7 +44,7 @@ enum hrtimer_base_type {
        HRTIMER_BASE_REALTIME_SOFT,
        HRTIMER_BASE_BOOTTIME_SOFT,
        HRTIMER_BASE_TAI_SOFT,
-       HRTIMER_MAX_CLOCK_BASES,
+       HRTIMER_MAX_CLOCK_BASES
 };
 
 /**