diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2006-01-08 04:02:10 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:13:46 -0500 |
commit | 7c709d00d614d0f2b6a80895b2a1aedbe04e8478 (patch) | |
tree | ba564dbc9f9d67c61b285eee4f856e0b26903127 /fs/fat/inode.c | |
parent | a5425d2927a6a771f9ae8767b6bfb3c09225bcdd (diff) |
[PATCH] fat: s/EXPORT_SYMBOL/EXPORT_SYMBOL_GPL/
All EXPORT_SYMBOL of fatfs is only for vfat/msdos. _GPL would be proper.
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fat/inode.c')
-rw-r--r-- | fs/fat/inode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index f502c6b8cb49..932c8d6d1f54 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -197,7 +197,7 @@ void fat_attach(struct inode *inode, loff_t i_pos) | |||
197 | spin_unlock(&sbi->inode_hash_lock); | 197 | spin_unlock(&sbi->inode_hash_lock); |
198 | } | 198 | } |
199 | 199 | ||
200 | EXPORT_SYMBOL(fat_attach); | 200 | EXPORT_SYMBOL_GPL(fat_attach); |
201 | 201 | ||
202 | void fat_detach(struct inode *inode) | 202 | void fat_detach(struct inode *inode) |
203 | { | 203 | { |
@@ -208,7 +208,7 @@ void fat_detach(struct inode *inode) | |||
208 | spin_unlock(&sbi->inode_hash_lock); | 208 | spin_unlock(&sbi->inode_hash_lock); |
209 | } | 209 | } |
210 | 210 | ||
211 | EXPORT_SYMBOL(fat_detach); | 211 | EXPORT_SYMBOL_GPL(fat_detach); |
212 | 212 | ||
213 | struct inode *fat_iget(struct super_block *sb, loff_t i_pos) | 213 | struct inode *fat_iget(struct super_block *sb, loff_t i_pos) |
214 | { | 214 | { |
@@ -362,7 +362,7 @@ out: | |||
362 | return inode; | 362 | return inode; |
363 | } | 363 | } |
364 | 364 | ||
365 | EXPORT_SYMBOL(fat_build_inode); | 365 | EXPORT_SYMBOL_GPL(fat_build_inode); |
366 | 366 | ||
367 | static void fat_delete_inode(struct inode *inode) | 367 | static void fat_delete_inode(struct inode *inode) |
368 | { | 368 | { |
@@ -557,7 +557,7 @@ int fat_sync_inode(struct inode *inode) | |||
557 | return fat_write_inode(inode, 1); | 557 | return fat_write_inode(inode, 1); |
558 | } | 558 | } |
559 | 559 | ||
560 | EXPORT_SYMBOL(fat_sync_inode); | 560 | EXPORT_SYMBOL_GPL(fat_sync_inode); |
561 | 561 | ||
562 | static int fat_show_options(struct seq_file *m, struct vfsmount *mnt); | 562 | static int fat_show_options(struct seq_file *m, struct vfsmount *mnt); |
563 | static struct super_operations fat_sops = { | 563 | static struct super_operations fat_sops = { |
@@ -1368,7 +1368,7 @@ out_fail: | |||
1368 | return error; | 1368 | return error; |
1369 | } | 1369 | } |
1370 | 1370 | ||
1371 | EXPORT_SYMBOL(fat_fill_super); | 1371 | EXPORT_SYMBOL_GPL(fat_fill_super); |
1372 | 1372 | ||
1373 | int __init fat_cache_init(void); | 1373 | int __init fat_cache_init(void); |
1374 | void fat_cache_destroy(void); | 1374 | void fat_cache_destroy(void); |