Skip to content

Commit 05429bb

Browse files
Colin Ian Kinggregkh
authored andcommitted
btrfs: remove duplicate const specifier
commit fb75d857a31d600cc0c37b8c7d914014f7fa3f9a upstream. duplicate const is redundant so remove it Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David Sterba <dsterba@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 9a64425 commit 05429bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/btrfs/volumes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const struct btrfs_raid_attr btrfs_raid_array[BTRFS_NR_RAID_TYPES] = {
108108
},
109109
};
110110

111-
const u64 const btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
111+
const u64 btrfs_raid_group[BTRFS_NR_RAID_TYPES] = {
112112
[BTRFS_RAID_RAID10] = BTRFS_BLOCK_GROUP_RAID10,
113113
[BTRFS_RAID_RAID1] = BTRFS_BLOCK_GROUP_RAID1,
114114
[BTRFS_RAID_DUP] = BTRFS_BLOCK_GROUP_DUP,

0 commit comments

Comments
 (0)