Skip to content

Commit a50ae5b

Browse files
Eric Floringregkh
authored andcommitted
staging: sm750fb: rename sm750_hw_cursor_setData2
Rename sm750_hw_cursor_setData2 to sm750_hw_cursor_set_data2 to conform with kernel style guidelines as reported by checkpatch.pl CHECK: Avoid CamelCase: <sm750_hw_cursor_setData2> Signed-off-by: Eric Florin <[email protected]> Link: https://lore.kernel.org/r/af5080150498adf635be36e332a7ce7121692f93.1745982772.git.ericflorin.kernel@gmail.com Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent dcb66f7 commit a50ae5b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

drivers/staging/sm750fb/sm750_cursor.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ void sm750_hw_cursor_set_data(struct lynx_cursor *cursor, u16 rop,
131131
}
132132
}
133133

134-
void sm750_hw_cursor_setData2(struct lynx_cursor *cursor, u16 rop,
135-
const u8 *pcol, const u8 *pmsk)
134+
void sm750_hw_cursor_set_data2(struct lynx_cursor *cursor, u16 rop,
135+
const u8 *pcol, const u8 *pmsk)
136136
{
137137
int i, j, count, pitch, offset;
138138
u8 color, mask;

drivers/staging/sm750fb/sm750_cursor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ void sm750_hw_cursor_set_pos(struct lynx_cursor *cursor, int x, int y);
1010
void sm750_hw_cursor_set_color(struct lynx_cursor *cursor, u32 fg, u32 bg);
1111
void sm750_hw_cursor_set_data(struct lynx_cursor *cursor, u16 rop,
1212
const u8 *data, const u8 *mask);
13-
void sm750_hw_cursor_setData2(struct lynx_cursor *cursor, u16 rop,
14-
const u8 *data, const u8 *mask);
13+
void sm750_hw_cursor_set_data2(struct lynx_cursor *cursor, u16 rop,
14+
const u8 *data, const u8 *mask);
1515
#endif

0 commit comments

Comments
 (0)