Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09652b00 authored by Adrian-Leonard Radu's avatar Adrian-Leonard Radu Committed by Michael Ellerman
Browse files

powerpc: Use PTR_RET instead of IS_ERR/PTR_ERR

parent db38f290
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ static int __init fail_iommu_debugfs(void)
	struct dentry *dir = fault_create_debugfs_attr("fail_iommu",
						       NULL, &fail_iommu);

	return IS_ERR(dir) ? PTR_ERR(dir) : 0;
	return PTR_RET(dir);
}
late_initcall(fail_iommu_debugfs);

+1 −3
Original line number Diff line number Diff line
@@ -1049,10 +1049,8 @@ static int __init rtc_init(void)
		return -ENODEV;

	pdev = platform_device_register_simple("rtc-generic", -1, NULL, 0);
	if (IS_ERR(pdev))
		return PTR_ERR(pdev);

	return 0;
	return PTR_RET(pdev);
}

module_init(rtc_init);
+1 −3
Original line number Diff line number Diff line
@@ -89,10 +89,8 @@ static int __init ps3_rtc_init(void)
		return -ENODEV;

	pdev = platform_device_register_simple("rtc-ps3", -1, NULL, 0);
	if (IS_ERR(pdev))
		return PTR_ERR(pdev);

	return 0;
	return PTR_RET(pdev);
}

module_init(ps3_rtc_init);
+1 −4
Original line number Diff line number Diff line
@@ -62,10 +62,7 @@ static int __init add_rtc(void)
	pd = platform_device_register_simple("rtc_cmos", -1,
					     &res[0], num_res);

	if (IS_ERR(pd))
		return PTR_ERR(pd);

	return 0;
	return PTR_RET(pd);
}
fs_initcall(add_rtc);