diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-07 12:01:25 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-07 12:01:25 -0400 |
| commit | 8b076738593244000c003111e67dba49bbbafab0 (patch) | |
| tree | afd5f6bac275adf50f45d416052abb25c4c84583 | |
| parent | f536b3cae84eb7c9f3495285ad048d13a397ed0b (diff) | |
| parent | 686913aa9f5179647818813fd2bc8342cf7119c4 (diff) | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/egtvedt/linux-avr32
Pull avr32 fix from Hans-Christian Egtvedt.
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/egtvedt/linux-avr32:
avr32: fix error return code
| -rw-r--r-- | arch/avr32/boards/hammerhead/flash.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/arch/avr32/boards/hammerhead/flash.c b/arch/avr32/boards/hammerhead/flash.c index 776c3cb9b6e4..e86280ccd8fa 100644 --- a/arch/avr32/boards/hammerhead/flash.c +++ b/arch/avr32/boards/hammerhead/flash.c | |||
| @@ -190,14 +190,19 @@ static int __init hammerhead_usbh_init(void) | |||
| 190 | 190 | ||
| 191 | /* setup gclk0 to run from osc1 */ | 191 | /* setup gclk0 to run from osc1 */ |
| 192 | gclk = clk_get(NULL, "gclk0"); | 192 | gclk = clk_get(NULL, "gclk0"); |
| 193 | if (IS_ERR(gclk)) | 193 | if (IS_ERR(gclk)) { |
| 194 | ret = PTR_ERR(gclk); | ||
| 194 | goto err_gclk; | 195 | goto err_gclk; |
| 196 | } | ||
| 195 | 197 | ||
| 196 | osc = clk_get(NULL, "osc1"); | 198 | osc = clk_get(NULL, "osc1"); |
| 197 | if (IS_ERR(osc)) | 199 | if (IS_ERR(osc)) { |
| 200 | ret = PTR_ERR(osc); | ||
| 198 | goto err_osc; | 201 | goto err_osc; |
| 202 | } | ||
| 199 | 203 | ||
| 200 | if (clk_set_parent(gclk, osc)) { | 204 | ret = clk_set_parent(gclk, osc); |
| 205 | if (ret < 0) { | ||
| 201 | pr_debug("hammerhead: failed to set osc1 for USBH clock\n"); | 206 | pr_debug("hammerhead: failed to set osc1 for USBH clock\n"); |
| 202 | goto err_set_clk; | 207 | goto err_set_clk; |
| 203 | } | 208 | } |
