diff options
author | Anand Jain <anand.jain@oracle.com> | 2020-09-05 01:34:25 +0800 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-10-07 12:12:21 +0200 |
commit | 6a416a018f1a9372a43465c366e91d202da01e11 (patch) | |
tree | 9a6836a72dee31ced16b04f167ab514c690fb4d3 /fs/btrfs/sysfs.c | |
parent | 985e233e96e56b9980d5f632fc306bfa6e03f70f (diff) | |
download | linux-6a416a018f1a9372a43465c366e91d202da01e11.tar.gz linux-6a416a018f1a9372a43465c366e91d202da01e11.tar.bz2 linux-6a416a018f1a9372a43465c366e91d202da01e11.zip |
btrfs: make btrfs_sysfs_remove_devices_dir return void
btrfs_sysfs_remove_devices_dir() return value is unused declare it as
void.
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/sysfs.c')
-rw-r--r-- | fs/btrfs/sysfs.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index a3bd4ba906cf..66fbb82b0bd5 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c @@ -1213,18 +1213,16 @@ static void btrfs_sysfs_remove_device(struct btrfs_device *device) } /* When @device is NULL, remove all devices link */ -int btrfs_sysfs_remove_devices_dir(struct btrfs_fs_devices *fs_devices, - struct btrfs_device *device) +void btrfs_sysfs_remove_devices_dir(struct btrfs_fs_devices *fs_devices, + struct btrfs_device *device) { if (device) { btrfs_sysfs_remove_device(device); - return 0; + return; } list_for_each_entry(device, &fs_devices->devices, dev_list) btrfs_sysfs_remove_device(device); - - return 0; } static ssize_t btrfs_devinfo_in_fs_metadata_show(struct kobject *kobj, |