diff options
author | Anand Jain <anand.jain@oracle.com> | 2016-03-10 12:49:14 +0800 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-03-11 17:12:46 +0100 |
commit | 8ae1af3cd127d507dcb1acf67f16120f20632aed (patch) | |
tree | 1f96012f9baed115d983debf413930a53c29f6d0 | |
parent | 3c1d84b71ebee2757b6c8691494a5716a7806bfa (diff) | |
download | linux-8ae1af3cd127d507dcb1acf67f16120f20632aed.tar.bz2 |
btrfs: rename btrfs_print_info to btrfs_print_mod_info
So that it indicates what it does.
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | fs/btrfs/super.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index a958f625793b..00b8f37cc306 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -2291,7 +2291,7 @@ static void btrfs_interface_exit(void) misc_deregister(&btrfs_misc); } -static void btrfs_print_info(void) +static void btrfs_print_mod_info(void) { printk(KERN_INFO "Btrfs loaded" #ifdef CONFIG_BTRFS_DEBUG @@ -2393,7 +2393,7 @@ static int __init init_btrfs_fs(void) btrfs_init_lockdep(); - btrfs_print_info(); + btrfs_print_mod_info(); err = btrfs_run_sanity_tests(); if (err) |