clk: Deduplicate exit code in clk_set_rate

On non-out case 'return ret;' is equivalent to 'return 0;' as the ret
variable is initialized at 0 and never changed.

Signed-off-by: Nestor Ovroy <novroy@riseup.net>
This commit is contained in:
Nestor Ovroy 2013-01-18 17:07:39 +01:00 коммит произвёл Mike Turquette
Родитель 135a829744
Коммит 4cfe54e579
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -1093,9 +1093,6 @@ int clk_set_rate(struct clk *clk, unsigned long rate)
/* change the rates */
clk_change_rate(top);
mutex_unlock(&prepare_lock);
return 0;
out:
mutex_unlock(&prepare_lock);