oprofile, ARM: Remove some goto statements

This patch removes some unnecessary goto statements.

Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Robert Richter <robert.richter@amd.com>
This commit is contained in:
Robert Richter 2010-08-27 14:32:41 +02:00
parent 652953b72e
commit 9c91283a19
1 changed files with 2 additions and 4 deletions

View File

@ -117,11 +117,10 @@ static int op_perf_start(void)
for (event = 0; event < num_counters; ++event) {
ret = op_create_counter(cpu, event);
if (ret)
goto out;
return ret;
}
}
out:
return ret;
}
@ -224,7 +223,7 @@ static int __init init_driverfs(void)
ret = platform_driver_register(&oprofile_driver);
if (ret)
goto out;
return ret;
oprofile_pdev = platform_device_register_simple(
oprofile_driver.driver.name, 0, NULL, 0);
@ -233,7 +232,6 @@ static int __init init_driverfs(void)
platform_driver_unregister(&oprofile_driver);
}
out:
return ret;
}