diff options
author | Cruz Julian Bishop <cruzjbishop@gmail.com> | 2012-10-04 20:14:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:05:11 -0400 |
commit | 3f36f6100a29ef5a48f451d7123d0e57850b1f0f (patch) | |
tree | e37e9309a0fe6ec3cdef35896ab1633d1b92af0a /fs/fat/dir.c | |
parent | c90518290ec88a45305a709aae72003a9bc8ad7c (diff) |
fs/fat: fix some small checkpatch issues in dir.c
Simply remove the spacing between function definitions and
EXPORT_SYMBOL_GPL calls, which were previously generating warnings.
Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fat/dir.c')
-rw-r--r-- | fs/fat/dir.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/fat/dir.c b/fs/fat/dir.c index 55e088cc0613..69fbe055d86e 100644 --- a/fs/fat/dir.c +++ b/fs/fat/dir.c | |||
@@ -537,7 +537,6 @@ end_of_dir: | |||
537 | 537 | ||
538 | return err; | 538 | return err; |
539 | } | 539 | } |
540 | |||
541 | EXPORT_SYMBOL_GPL(fat_search_long); | 540 | EXPORT_SYMBOL_GPL(fat_search_long); |
542 | 541 | ||
543 | struct fat_ioctl_filldir_callback { | 542 | struct fat_ioctl_filldir_callback { |
@@ -892,7 +891,6 @@ int fat_get_dotdot_entry(struct inode *dir, struct buffer_head **bh, | |||
892 | } | 891 | } |
893 | return -ENOENT; | 892 | return -ENOENT; |
894 | } | 893 | } |
895 | |||
896 | EXPORT_SYMBOL_GPL(fat_get_dotdot_entry); | 894 | EXPORT_SYMBOL_GPL(fat_get_dotdot_entry); |
897 | 895 | ||
898 | /* See if directory is empty */ | 896 | /* See if directory is empty */ |
@@ -915,7 +913,6 @@ int fat_dir_empty(struct inode *dir) | |||
915 | brelse(bh); | 913 | brelse(bh); |
916 | return result; | 914 | return result; |
917 | } | 915 | } |
918 | |||
919 | EXPORT_SYMBOL_GPL(fat_dir_empty); | 916 | EXPORT_SYMBOL_GPL(fat_dir_empty); |
920 | 917 | ||
921 | /* | 918 | /* |
@@ -961,7 +958,6 @@ int fat_scan(struct inode *dir, const unsigned char *name, | |||
961 | } | 958 | } |
962 | return -ENOENT; | 959 | return -ENOENT; |
963 | } | 960 | } |
964 | |||
965 | EXPORT_SYMBOL_GPL(fat_scan); | 961 | EXPORT_SYMBOL_GPL(fat_scan); |
966 | 962 | ||
967 | static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots) | 963 | static int __fat_remove_entries(struct inode *dir, loff_t pos, int nr_slots) |
@@ -1049,7 +1045,6 @@ int fat_remove_entries(struct inode *dir, struct fat_slot_info *sinfo) | |||
1049 | 1045 | ||
1050 | return 0; | 1046 | return 0; |
1051 | } | 1047 | } |
1052 | |||
1053 | EXPORT_SYMBOL_GPL(fat_remove_entries); | 1048 | EXPORT_SYMBOL_GPL(fat_remove_entries); |
1054 | 1049 | ||
1055 | static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used, | 1050 | static int fat_zeroed_cluster(struct inode *dir, sector_t blknr, int nr_used, |
@@ -1161,7 +1156,6 @@ error_free: | |||
1161 | error: | 1156 | error: |
1162 | return err; | 1157 | return err; |
1163 | } | 1158 | } |
1164 | |||
1165 | EXPORT_SYMBOL_GPL(fat_alloc_new_dir); | 1159 | EXPORT_SYMBOL_GPL(fat_alloc_new_dir); |
1166 | 1160 | ||
1167 | static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots, | 1161 | static int fat_add_new_entries(struct inode *dir, void *slots, int nr_slots, |
@@ -1377,5 +1371,4 @@ error_remove: | |||
1377 | __fat_remove_entries(dir, pos, free_slots); | 1371 | __fat_remove_entries(dir, pos, free_slots); |
1378 | return err; | 1372 | return err; |
1379 | } | 1373 | } |
1380 | |||
1381 | EXPORT_SYMBOL_GPL(fat_add_entries); | 1374 | EXPORT_SYMBOL_GPL(fat_add_entries); |