aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-pl022.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2011-09-22 09:27:11 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2011-09-27 04:25:53 -0400
commit7ff6bcf048e6a9849ea0b44269fa4c1c72869db2 (patch)
tree91f18c24ddd46ad6a01ffbe039d51cf3be067b91 /drivers/spi/spi-pl022.c
parent6f5ad96301d4b897f09a893d331a0b18b3fff6b1 (diff)
clk: spi-pl022: convert to clk_prepare()/clk_unprepare()
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/spi/spi-pl022.c')
-rw-r--r--drivers/spi/spi-pl022.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c
index 3520cf955b95..1ab2fa0d37fd 100644
--- a/drivers/spi/spi-pl022.c
+++ b/drivers/spi/spi-pl022.c
@@ -2187,6 +2187,13 @@ pl022_probe(struct amba_device *adev, const struct amba_id *id)
2187 dev_err(&adev->dev, "could not retrieve SSP/SPI bus clock\n"); 2187 dev_err(&adev->dev, "could not retrieve SSP/SPI bus clock\n");
2188 goto err_no_clk; 2188 goto err_no_clk;
2189 } 2189 }
2190
2191 status = clk_prepare(pl022->clk);
2192 if (status) {
2193 dev_err(&adev->dev, "could not prepare SSP/SPI bus clock\n");
2194 goto err_clk_prep;
2195 }
2196
2190 /* Disable SSP */ 2197 /* Disable SSP */
2191 writew((readw(SSP_CR1(pl022->virtbase)) & (~SSP_CR1_MASK_SSE)), 2198 writew((readw(SSP_CR1(pl022->virtbase)) & (~SSP_CR1_MASK_SSE)),
2192 SSP_CR1(pl022->virtbase)); 2199 SSP_CR1(pl022->virtbase));
@@ -2238,6 +2245,8 @@ pl022_probe(struct amba_device *adev, const struct amba_id *id)
2238 pl022_dma_remove(pl022); 2245 pl022_dma_remove(pl022);
2239 free_irq(adev->irq[0], pl022); 2246 free_irq(adev->irq[0], pl022);
2240 err_no_irq: 2247 err_no_irq:
2248 clk_unprepare(pl022->clk);
2249 err_clk_prep:
2241 clk_put(pl022->clk); 2250 clk_put(pl022->clk);
2242 err_no_clk: 2251 err_no_clk:
2243 iounmap(pl022->virtbase); 2252 iounmap(pl022->virtbase);
@@ -2271,6 +2280,7 @@ pl022_remove(struct amba_device *adev)
2271 pl022_dma_remove(pl022); 2280 pl022_dma_remove(pl022);
2272 free_irq(adev->irq[0], pl022); 2281 free_irq(adev->irq[0], pl022);
2273 clk_disable(pl022->clk); 2282 clk_disable(pl022->clk);
2283 clk_unprepare(pl022->clk);
2274 clk_put(pl022->clk); 2284 clk_put(pl022->clk);
2275 iounmap(pl022->virtbase); 2285 iounmap(pl022->virtbase);
2276 amba_release_regions(adev); 2286 amba_release_regions(adev);