summaryrefslogtreecommitdiffstats
path: root/drivers/oprofile/oprofile_files.c
diff options
context:
space:
mode:
authorAl Viro2013-07-19 13:52:42 +0200
committerAl Viro2013-09-04 04:52:46 +0200
commitef7bca1456e7f65e66b9466c3b149601fe32eec0 (patch)
tree84cca2e208e1d482cdcdba49e69bd9a149728709 /drivers/oprofile/oprofile_files.c
parentdon't bother passing sb to oprofile_create_files() (diff)
downloadkernel-qcow2-linux-ef7bca1456e7f65e66b9466c3b149601fe32eec0.tar.gz
kernel-qcow2-linux-ef7bca1456e7f65e66b9466c3b149601fe32eec0.tar.xz
kernel-qcow2-linux-ef7bca1456e7f65e66b9466c3b149601fe32eec0.zip
oprofile: don't bother with passing superblock to ->create_files()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/oprofile/oprofile_files.c')
-rw-r--r--drivers/oprofile/oprofile_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/oprofile/oprofile_files.c b/drivers/oprofile/oprofile_files.c
index 97c345ff62c4..ffc30ee641d4 100644
--- a/drivers/oprofile/oprofile_files.c
+++ b/drivers/oprofile/oprofile_files.c
@@ -197,5 +197,5 @@ void oprofile_create_files(struct dentry *root)
#endif
oprofile_create_stats_files(root->d_sb, root);
if (oprofile_ops.create_files)
- oprofile_ops.create_files(root->d_sb, root);
+ oprofile_ops.create_files(root);
}