Skip to content

Commit 31c2d32

Browse files
Eric Floringregkh
authored andcommitted
staging: sm750fb: change enum dpms to snake_case
Change the entries in `enum dpms` to snake_case in order to conform to kernel code styles as reported by checkpatch.pl CHECK: Avoid CamelCase: <crtDPMS_ON> CHECK: Avoid CamelCase: <crtDPMS_STANDBY> CHECK: Avoid CamelCase: <crtDPMS_SUSPEND> CHECK: Avoid CamelCase: <crtDPMS_OFF> Signed-off-by: Eric Florin <ericflorin.kernel@gmail.com> Link: https://lore.kernel.org/r/20250423040345.11323-1-ericflorin.kernel@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent e0138bb commit 31c2d32

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

drivers/staging/sm750fb/ddk750_power.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#define DDK750_POWER_H__
44

55
enum dpms {
6-
crtDPMS_ON = 0x0,
7-
crtDPMS_STANDBY = 0x1,
8-
crtDPMS_SUSPEND = 0x2,
9-
crtDPMS_OFF = 0x3,
6+
CRT_DPMS_ON = 0x0,
7+
CRT_DPMS_STANDBY = 0x1,
8+
CRT_DPMS_SUSPEND = 0x2,
9+
CRT_DPMS_OFF = 0x3,
1010
};
1111

1212
#define set_DAC(off) { \

0 commit comments

Comments
 (0)