Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1357674 > unrolled thread
| Started by | David Lechner <david@lechnology.com> |
|---|---|
| First post | 2016-03-15 00:00 +0100 |
| Last post | 2016-03-15 10:20 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 1/5] mmc: davinci: remove matching string David Lechner <david@lechnology.com> - 2016-03-15 00:00 +0100
Re: [PATCH v2 1/5] mmc: davinci: remove matching string Sekhar Nori <nsekhar@ti.com> - 2016-03-15 10:20 +0100
| From | David Lechner <david@lechnology.com> |
|---|---|
| Date | 2016-03-15 00:00 +0100 |
| Subject | [PATCH v2 1/5] mmc: davinci: remove matching string |
| Message-ID | <rcJCW-1Hd-19@gated-at.bofh.it> |
The string "MMCSDCLK" is not actually used for clock lookup, so can be removed.
Signed-off-by: David Lechner <david@lechnology.com>
---
v2 changes: none
drivers/mmc/host/davinci_mmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/davinci_mmc.c b/drivers/mmc/host/davinci_mmc.c
index 693144e..a294d261 100644
--- a/drivers/mmc/host/davinci_mmc.c
+++ b/drivers/mmc/host/davinci_mmc.c
@@ -1271,7 +1271,7 @@ static int __init davinci_mmcsd_probe(struct platform_device *pdev)
goto out;
ret = -ENXIO;
- host->clk = clk_get(&pdev->dev, "MMCSDCLK");
+ host->clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(host->clk)) {
ret = PTR_ERR(host->clk);
goto out;
--
1.9.1
[toc] | [next] | [standalone]
| From | Sekhar Nori <nsekhar@ti.com> |
|---|---|
| Date | 2016-03-15 10:20 +0100 |
| Message-ID | <rcTiW-8vj-3@gated-at.bofh.it> |
| In reply to | #1357674 |
On Tuesday 15 March 2016 04:24 AM, David Lechner wrote: > The string "MMCSDCLK" is not actually used for clock lookup, so can be removed. > > Signed-off-by: David Lechner <david@lechnology.com> In general, you can carry forward acks received in the last version of the patch if the patch is unchanged. Acked-by: Sekhar Nori <nsekhar@ti.com> Thanks, Sekhar
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web