Commit 23b6fc73 authored by Arushi Singhal's avatar Arushi Singhal Committed by Greg Kroah-Hartman

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: default avatarArushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d228cf87
...@@ -54,6 +54,7 @@ void sm750_hw_cursor_enable(struct lynx_cursor *cursor) ...@@ -54,6 +54,7 @@ void sm750_hw_cursor_enable(struct lynx_cursor *cursor)
reg = (cursor->offset & HWC_ADDRESS_ADDRESS_MASK) | HWC_ADDRESS_ENABLE; reg = (cursor->offset & HWC_ADDRESS_ADDRESS_MASK) | HWC_ADDRESS_ENABLE;
poke32(HWC_ADDRESS, reg); poke32(HWC_ADDRESS, reg);
} }
void sm750_hw_cursor_disable(struct lynx_cursor *cursor) void sm750_hw_cursor_disable(struct lynx_cursor *cursor)
{ {
poke32(HWC_ADDRESS, 0); poke32(HWC_ADDRESS, 0);
...@@ -65,6 +66,7 @@ void sm750_hw_cursor_setSize(struct lynx_cursor *cursor, ...@@ -65,6 +66,7 @@ void sm750_hw_cursor_setSize(struct lynx_cursor *cursor,
cursor->w = w; cursor->w = w;
cursor->h = h; cursor->h = h;
} }
void sm750_hw_cursor_setPos(struct lynx_cursor *cursor, void sm750_hw_cursor_setPos(struct lynx_cursor *cursor,
int x, int y) int x, int y)
{ {
...@@ -74,6 +76,7 @@ void sm750_hw_cursor_setPos(struct lynx_cursor *cursor, ...@@ -74,6 +76,7 @@ void sm750_hw_cursor_setPos(struct lynx_cursor *cursor,
(x & HWC_LOCATION_X_MASK); (x & HWC_LOCATION_X_MASK);
poke32(HWC_LOCATION, reg); poke32(HWC_LOCATION, reg);
} }
void sm750_hw_cursor_setColor(struct lynx_cursor *cursor, void sm750_hw_cursor_setColor(struct lynx_cursor *cursor,
u32 fg, u32 bg) u32 fg, u32 bg)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment