From aaeb7fa3d09a7826d7df26983d81f9989e52cda3 Mon Sep 17 00:00:00 2001 From: Peng Liu Date: Fri, 17 Jan 2025 02:09:45 +0000 Subject: [PATCH] style: remove unnecessary spaces in sa.h Removed three unnecessary spaces in the definition of the sa_attr_reg_t structure to improve code style consistency and adhere to OpenZFS coding standards. Reviewed-by: Brian Behlendorf Reviewed-by: Alexander Motin Reviewed-by: Rob Norris Signed-off-by: Peng Liu Closes #16955 --- include/sys/sa.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/sys/sa.h b/include/sys/sa.h index c551acecab30..2e1d50c7330f 100644 --- a/include/sys/sa.h +++ b/include/sys/sa.h @@ -49,10 +49,10 @@ typedef uint16_t sa_attr_type_t; * Attribute to register support for. */ typedef struct sa_attr_reg { - const char *sa_name; /* attribute name */ - uint16_t sa_length; + const char *sa_name; /* attribute name */ + uint16_t sa_length; sa_bswap_type_t sa_byteswap; /* bswap function enum */ - sa_attr_type_t sa_attr; /* filled in during registration */ + sa_attr_type_t sa_attr; /* filled in during registration */ } sa_attr_reg_t; @@ -77,7 +77,7 @@ typedef struct sa_bulk_attr { uint16_t sa_length; sa_attr_type_t sa_attr; /* the following are private to the sa framework */ - void *sa_addr; + void *sa_addr; uint16_t sa_buftype; uint16_t sa_size; } sa_bulk_attr_t;