diff options
Diffstat (limited to 'arch/powerpc/kernel/iommu.c')
-rw-r--r-- | arch/powerpc/kernel/iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/iommu.c b/arch/powerpc/kernel/iommu.c index 31c4fdc6859c..c0d0dbddfba1 100644 --- a/arch/powerpc/kernel/iommu.c +++ b/arch/powerpc/kernel/iommu.c | |||
@@ -102,7 +102,7 @@ static int __init fail_iommu_debugfs(void) | |||
102 | struct dentry *dir = fault_create_debugfs_attr("fail_iommu", | 102 | struct dentry *dir = fault_create_debugfs_attr("fail_iommu", |
103 | NULL, &fail_iommu); | 103 | NULL, &fail_iommu); |
104 | 104 | ||
105 | return IS_ERR(dir) ? PTR_ERR(dir) : 0; | 105 | return PTR_RET(dir); |
106 | } | 106 | } |
107 | late_initcall(fail_iommu_debugfs); | 107 | late_initcall(fail_iommu_debugfs); |
108 | 108 | ||