mirror of
https://github.com/opnsense/src.git
synced 2026-02-18 18:20:26 -05:00
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 (cherry picked from commit 085c8bdec5bcb01acff5c6e9cd2d8864f44a20cd)
This commit is contained in:
parent
cc1cb8e376
commit
6a937165f9
1 changed files with 5 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue