Skip to content

Commit 23b6fc7

Browse files
ArushiSinghalgregkh
authored andcommitted
staging: sm750fb: fixes add blank line after function/struct/union/enum declarations
This patch fixes the warnings reported by checkpatch.pl for please use a blank line after function/struct/union/enum declarations. Signed-off-by: Arushi Singhal <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent d228cf8 commit 23b6fc7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/staging/sm750fb/sm750_cursor.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ void sm750_hw_cursor_enable(struct lynx_cursor *cursor)
5454
reg = (cursor->offset & HWC_ADDRESS_ADDRESS_MASK) | HWC_ADDRESS_ENABLE;
5555
poke32(HWC_ADDRESS, reg);
5656
}
57+
5758
void sm750_hw_cursor_disable(struct lynx_cursor *cursor)
5859
{
5960
poke32(HWC_ADDRESS, 0);
@@ -65,6 +66,7 @@ void sm750_hw_cursor_setSize(struct lynx_cursor *cursor,
6566
cursor->w = w;
6667
cursor->h = h;
6768
}
69+
6870
void sm750_hw_cursor_setPos(struct lynx_cursor *cursor,
6971
int x, int y)
7072
{
@@ -74,6 +76,7 @@ void sm750_hw_cursor_setPos(struct lynx_cursor *cursor,
7476
(x & HWC_LOCATION_X_MASK);
7577
poke32(HWC_LOCATION, reg);
7678
}
79+
7780
void sm750_hw_cursor_setColor(struct lynx_cursor *cursor,
7881
u32 fg, u32 bg)
7982
{

0 commit comments

Comments
 (0)