From 085c8bdec5bcb01acff5c6e9cd2d8864f44a20cd Mon Sep 17 00:00:00 2001 From: Olivier Certner Date: Mon, 3 Mar 2025 10:58:32 +0100 Subject: [PATCH] libsa: smbios: style(9): SMBIOS_GET8(): Split overlong line No functional change. Reviewed by: markj MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D49279 --- stand/libsa/smbios.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stand/libsa/smbios.c b/stand/libsa/smbios.c index 8d516301ec0..a203d222bc7 100644 --- a/stand/libsa/smbios.c +++ b/stand/libsa/smbios.c @@ -106,7 +106,11 @@ * because those can optimize to an unaligned load (which often is fine, but not * for mmap'd /dev/mem which has special memory attributes). */ -static inline uint8_t SMBIOS_GET8(const caddr_t base, int off) { return (base[off]); } +static inline uint8_t +SMBIOS_GET8(const caddr_t base, int off) +{ + return (base[off]); +} static inline uint16_t SMBIOS_GET16(const caddr_t base, int off)