Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 211032
b: refs/heads/master
c: 9320f7c
h: refs/heads/master
v: v3
  • Loading branch information
Marek Szyprowski authored and Chris Ball committed Sep 26, 2010
1 parent c4e3830 commit b862044
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 06fe577f841f383b2d4f743cfb74fac7f6468353
refs/heads/master: 9320f7cbbdd5febf013b0e91db29189724057738
6 changes: 4 additions & 2 deletions trunk/drivers/mmc/host/sdhci-s3c.c
Original file line number Diff line number Diff line change
Expand Up @@ -483,8 +483,10 @@ static int __devexit sdhci_s3c_remove(struct platform_device *pdev)
sdhci_remove_host(host, 1);

for (ptr = 0; ptr < 3; ptr++) {
clk_disable(sc->clk_bus[ptr]);
clk_put(sc->clk_bus[ptr]);
if (sc->clk_bus[ptr]) {
clk_disable(sc->clk_bus[ptr]);
clk_put(sc->clk_bus[ptr]);
}
}
clk_disable(sc->clk_io);
clk_put(sc->clk_io);
Expand Down

0 comments on commit b862044

Please sign in to comment.