From: Thomas Weißschuh (Schneider Electric) Date: Wed, 11 Mar 2026 10:15:20 +0000 (+0100) Subject: hrtimer: Remove trailing comma after HRTIMER_MAX_CLOCK_BASES X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f27fc117cf8fba56e0619694e685f9bca9b9cb82;p=thirdparty%2Fkernel%2Flinux.git hrtimer: Remove trailing comma after HRTIMER_MAX_CLOCK_BASES 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) Signed-off-by: Thomas Gleixner Link: https://patch.msgid.link/20260311-hrtimer-cleanups-v1-11-095357392669@linutronix.de --- diff --git a/include/linux/hrtimer_defs.h b/include/linux/hrtimer_defs.h index a03240c0b14f8..52ed9e46ff136 100644 --- a/include/linux/hrtimer_defs.h +++ b/include/linux/hrtimer_defs.h @@ -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 }; /**