staging: gpib: uapi: Fix CamelCase and IB_STB
authorMichael Rubin <matchstick@neverthere.org>
Tue, 8 Apr 2025 22:20:38 +0000 (22:20 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Apr 2025 14:34:51 +0000 (16:34 +0200)
Correct CamelCase for IB_STB enums

Adhere to Linux kernel coding style.

Reported by checkpatch

Signed-off-by: Michael Rubin <matchstick@neverthere.org>
Link: https://lore.kernel.org/r/20250408222040.186881-13-matchstick@neverthere.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gpib/uapi/gpib_user.h

index 7f343256c1109d25be6bb7d00840f50e3e1b146f..301083f287ad66f54dfd1380544f4d5119374418 100644 (file)
@@ -340,9 +340,9 @@ enum gpib_events {
 };
 
 enum gpib_stb {
-       IbStbRQS = 0x40, /* IEEE 488.1 & 2  */
-       IbStbESB = 0x20, /* IEEE 488.2 only */
-       IbStbMAV = 0x10  /* IEEE 488.2 only */
+       IB_STB_RQS = 0x40, /* IEEE 488.1 & 2  */
+       IB_STB_ESB = 0x20, /* IEEE 488.2 only */
+       IB_STB_MAV = 0x10        /* IEEE 488.2 only */
 };
 
 #endif /* _GPIB_USER_H */