summaryrefslogtreecommitdiffstats
path: root/drivers/staging/exfat/exfat.h
diff options
context:
space:
mode:
authorValentin Vidic <vvidic@valentin-vidic.from.hr>2019-09-02 21:03:29 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-09-03 09:00:29 +0200
commit5b489e2ff650ba7d3ff50e80e8dec2305be6bb62 (patch)
tree38556b4b115b2efaed184584c45d7f83ae605ab5 /drivers/staging/exfat/exfat.h
parent544b3e7fd2d39b571298c64000423df21b912a3b (diff)
downloadlinux-5b489e2ff650ba7d3ff50e80e8dec2305be6bb62.tar.bz2
staging: exfat: cleanup blank line warnings
Fixes checkpatch.pl warnings: CHECK: Please don't use multiple blank lines CHECK: Blank lines aren't necessary after an open brace '{' CHECK: Please use a blank line after function/struct/union/enum declarations Signed-off-by: Valentin Vidic <vvidic@valentin-vidic.from.hr> Link: https://lore.kernel.org/r/20190902190329.18685-1-vvidic@valentin-vidic.from.hr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/exfat/exfat.h')
-rw-r--r--drivers/staging/exfat/exfat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index bae180e10609..e41754bbdeab 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -170,6 +170,7 @@ static inline u16 get_col_index(u16 i)
{
return i >> LOW_INDEX_BIT;
}
+
static inline u16 get_row_index(u16 i)
{
return i & ~HIGH_INDEX_MASK;