diff options
author | Mike Rapoport <mike.rapoport@gmail.com> | 2015-10-26 09:06:04 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-27 17:04:57 +0900 |
commit | 52e933278a09777b5c0631951a0a7edd49eb2abc (patch) | |
tree | 763f47535379325fd85ad9ae068cae82e66fa4a7 | |
parent | 083c2048f53b5373de0fc463d4ad0787b66c8167 (diff) |
staging: sm750fb: fix wrong indentation
Fix wrong indentation of a line in lynxfb_set_fbinfo
Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/sm750fb/sm750.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c index 707e91dbfc75..8f6908ba6f52 100644 --- a/drivers/staging/sm750fb/sm750.c +++ b/drivers/staging/sm750fb/sm750.c @@ -791,7 +791,7 @@ static int lynxfb_set_fbinfo(struct fb_info *info, int index) crtc->cursor.vstart = share->pvMem + crtc->cursor.offset; crtc->cursor.share = share; - memset_io(crtc->cursor.vstart, 0, crtc->cursor.size); + memset_io(crtc->cursor.vstart, 0, crtc->cursor.size); if (!g_hwcursor) { lynxfb_ops.fb_cursor = NULL; hw_cursor_disable(&crtc->cursor); |