From 6478e02b2a5734d22e0137139eb30964a7a57798 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 20 Jul 2024 14:41:01 +0200 Subject: [PATCH] drivers: timer: Remove duplicate newlines Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut --- drivers/timer/arc_timer.c | 1 - drivers/timer/sp804_timer.c | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/timer/arc_timer.c b/drivers/timer/arc_timer.c index 413bcc32f0..6ad520c10a 100644 --- a/drivers/timer/arc_timer.c +++ b/drivers/timer/arc_timer.c @@ -89,7 +89,6 @@ static int arc_timer_probe(struct udevice *dev) return 0; } - static const struct timer_ops arc_timer_ops = { .get_count = arc_timer_get_count, }; diff --git a/drivers/timer/sp804_timer.c b/drivers/timer/sp804_timer.c index a254e295cb..3e57f4b98b 100644 --- a/drivers/timer/sp804_timer.c +++ b/drivers/timer/sp804_timer.c @@ -29,7 +29,6 @@ DECLARE_GLOBAL_DATA_PTR; #define SP804_CTRL_TIMER_32BIT (1U << 1) #define SP804_CTRL_ONESHOT (1U << 0) - struct sp804_timer_plat { uintptr_t base; }; -- 2.39.5