From 0f0e8cf33b807caebb9d8e8a652c0e7326ea48d7 Mon Sep 17 00:00:00 2001 From: Niklas Schnelle Date: Thu, 23 Jul 2026 16:55:53 +0200 Subject: [PATCH] zpcimon: Make optics_los_implemente() static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sparse noted that optics_los_implemente() can be static. Make it so. Reviewed-by: Jan Höppner Signed-off-by: Niklas Schnelle Signed-off-by: Jan Höppner --- zpcimon/optics_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zpcimon/optics_info.c b/zpcimon/optics_info.c index 00d8d723..b3bc3535 100644 --- a/zpcimon/optics_info.c +++ b/zpcimon/optics_info.c @@ -53,7 +53,7 @@ enum optics_type optics_type(struct optics *oi) }; } -bool optics_los_implemented(struct optics *oi) +static bool optics_los_implemented(struct optics *oi) { enum optics_type type = optics_type(oi); uint8_t implemented;