aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390
diff options
context:
space:
mode:
Diffstat (limited to 'arch/s390')
-rw-r--r--arch/s390/oprofile/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/oprofile/init.c b/arch/s390/oprofile/init.c
index 712d57bb783a..5ae06db7ec58 100644
--- a/arch/s390/oprofile/init.c
+++ b/arch/s390/oprofile/init.c
@@ -350,7 +350,7 @@ static int oprofile_create_hwsampling_files(struct dentry *root)
350{ 350{
351 struct dentry *dir; 351 struct dentry *dir;
352 352
353 dir = oprofilefs_mkdir(root->d_sb, root, "timer"); 353 dir = oprofilefs_mkdir(root, "timer");
354 if (!dir) 354 if (!dir)
355 return -EINVAL; 355 return -EINVAL;
356 356
@@ -375,7 +375,7 @@ static int oprofile_create_hwsampling_files(struct dentry *root)
375 * and can only be set to 0. 375 * and can only be set to 0.
376 */ 376 */
377 377
378 dir = oprofilefs_mkdir(root->d_sb, root, "0"); 378 dir = oprofilefs_mkdir(root, "0");
379 if (!dir) 379 if (!dir)
380 return -EINVAL; 380 return -EINVAL;
381 381
@@ -395,7 +395,7 @@ static int oprofile_create_hwsampling_files(struct dentry *root)
395 * space tools. The /dev/oprofile/hwsampling fs is 395 * space tools. The /dev/oprofile/hwsampling fs is
396 * provided in that case. 396 * provided in that case.
397 */ 397 */
398 dir = oprofilefs_mkdir(root->d_sb, root, "hwsampling"); 398 dir = oprofilefs_mkdir(root, "hwsampling");
399 if (!dir) 399 if (!dir)
400 return -EINVAL; 400 return -EINVAL;
401 401