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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent e0138bb commit 31c2d32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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)