diff options
Diffstat (limited to 'arch/arm/oprofile/common.c')
| -rw-r--r-- | arch/arm/oprofile/common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/oprofile/common.c b/arch/arm/oprofile/common.c index 1415930ceee1..6f8bc1f0e6a1 100644 --- a/arch/arm/oprofile/common.c +++ b/arch/arm/oprofile/common.c | |||
| @@ -137,8 +137,9 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) | |||
| 137 | if (spec) { | 137 | if (spec) { |
| 138 | init_MUTEX(&op_arm_sem); | 138 | init_MUTEX(&op_arm_sem); |
| 139 | 139 | ||
| 140 | if (spec->init() < 0) | 140 | ret = spec->init(); |
| 141 | return -ENODEV; | 141 | if (ret < 0) |
| 142 | return ret; | ||
| 142 | 143 | ||
| 143 | op_arm_model = spec; | 144 | op_arm_model = spec; |
| 144 | init_driverfs(); | 145 | init_driverfs(); |
