Skip to content

Commit 641c318

Browse files
vitkyrkacjb
authored andcommitted
mmc: block: init force_ro sysfs attribute
To avoid lockdep warnings: BUG: key dc90a520 not in .data! ------------[ cut here ]------------ WARNING: at /home/rabin/kernel/arm/kernel/lockdep.c:2701 sysfs_add_file_mode+0x4c/0xb0() Modules linked in: [<c004b5d8>] (unwind_backtrace+0x0/0xe4) from [<c0074f20>] (warn_slowpath_common+0x4c/0x64) [<c0074f20>] (warn_slowpath_common+0x4c/0x64) from [<c0074f50>] (warn_slowpath_null+0x18/0x1c) [<c0074f50>] (warn_slowpath_null+0x18/0x1c) from [<c0157fec>] (sysfs_add_file_mode+0x4c/0xb0) [<c0157fec>] (sysfs_add_file_mode+0x4c/0xb0) from [<c02d61e4>] (mmc_add_disk+0x40/0x64) [<c02d61e4>] (mmc_add_disk+0x40/0x64) from [<c02d64cc>] (mmc_blk_probe+0x188/0x1fc) [<c02d64cc>] (mmc_blk_probe+0x188/0x1fc) from [<c02ce820>] (mmc_bus_probe+0x14/0x18) ... Signed-off-by: Rabin Vincent <[email protected]> Signed-off-by: Chris Ball <[email protected]>
1 parent 82b0e23 commit 641c318

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/mmc/card/block.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,7 @@ static int mmc_add_disk(struct mmc_blk_data *md)
970970
add_disk(md->disk);
971971
md->force_ro.show = force_ro_show;
972972
md->force_ro.store = force_ro_store;
973+
sysfs_attr_init(&md->force_ro.attr);
973974
md->force_ro.attr.name = "force_ro";
974975
md->force_ro.attr.mode = S_IRUGO | S_IWUSR;
975976
ret = device_create_file(disk_to_dev(md->disk), &md->force_ro);

0 commit comments

Comments
 (0)