* [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
@ 2014-03-04 5:03 Sachin Kamat
2014-03-04 11:44 ` Jaehoon Chung
0 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2014-03-04 5:03 UTC (permalink / raw)
To: linux-mmc; +Cc: ulf.hansson, tgih.jun, chris, jh80.chung, sachin.kamat
'dw_mci_exynos_pmops' is local to this file.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/mmc/host/dw_mmc-exynos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c
index 3423c5ed50c7..12f0929f12a9 100644
--- a/drivers/mmc/host/dw_mmc-exynos.c
+++ b/drivers/mmc/host/dw_mmc-exynos.c
@@ -426,7 +426,7 @@ static int dw_mci_exynos_probe(struct platform_device *pdev)
return dw_mci_pltfm_register(pdev, drv_data);
}
-const struct dev_pm_ops dw_mci_exynos_pmops = {
+static const struct dev_pm_ops dw_mci_exynos_pmops = {
SET_SYSTEM_SLEEP_PM_OPS(dw_mci_exynos_suspend, dw_mci_exynos_resume)
.resume_noirq = dw_mci_exynos_resume_noirq,
.thaw_noirq = dw_mci_exynos_resume_noirq,
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
2014-03-04 5:03 [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops Sachin Kamat
@ 2014-03-04 11:44 ` Jaehoon Chung
2014-03-18 4:34 ` Sachin Kamat
0 siblings, 1 reply; 6+ messages in thread
From: Jaehoon Chung @ 2014-03-04 11:44 UTC (permalink / raw)
To: Sachin Kamat, linux-mmc; +Cc: ulf.hansson, tgih.jun, chris
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
On 03/04/2014 02:03 PM, Sachin Kamat wrote:
> 'dw_mci_exynos_pmops' is local to this file.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> ---
> drivers/mmc/host/dw_mmc-exynos.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c
> index 3423c5ed50c7..12f0929f12a9 100644
> --- a/drivers/mmc/host/dw_mmc-exynos.c
> +++ b/drivers/mmc/host/dw_mmc-exynos.c
> @@ -426,7 +426,7 @@ static int dw_mci_exynos_probe(struct platform_device *pdev)
> return dw_mci_pltfm_register(pdev, drv_data);
> }
>
> -const struct dev_pm_ops dw_mci_exynos_pmops = {
> +static const struct dev_pm_ops dw_mci_exynos_pmops = {
> SET_SYSTEM_SLEEP_PM_OPS(dw_mci_exynos_suspend, dw_mci_exynos_resume)
> .resume_noirq = dw_mci_exynos_resume_noirq,
> .thaw_noirq = dw_mci_exynos_resume_noirq,
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
2014-03-04 11:44 ` Jaehoon Chung
@ 2014-03-18 4:34 ` Sachin Kamat
2014-03-18 6:16 ` Seungwon Jeon
0 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2014-03-18 4:34 UTC (permalink / raw)
To: Ulf Hansson; +Cc: linux-mmc@vger.kernel.org, chris@printf.net
On 4 March 2014 17:14, Jaehoon Chung <jh80.chung@samsung.com> wrote:
> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Ping Ulf, Chris.
--
With warm regards,
Sachin
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
2014-03-18 4:34 ` Sachin Kamat
@ 2014-03-18 6:16 ` Seungwon Jeon
2014-03-26 8:37 ` Sachin Kamat
0 siblings, 1 reply; 6+ messages in thread
From: Seungwon Jeon @ 2014-03-18 6:16 UTC (permalink / raw)
To: 'Sachin Kamat', 'Ulf Hansson'; +Cc: linux-mmc, chris
On Tue, March 18, 2014, Sachin Kamat wrote:
> On 4 March 2014 17:14, Jaehoon Chung <jh80.chung@samsung.com> wrote:
> > Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
>
> Ping Ulf, Chris.
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Thanks,
Seungwon Jeon
>
> --
> With warm regards,
> Sachin
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
2014-03-18 6:16 ` Seungwon Jeon
@ 2014-03-26 8:37 ` Sachin Kamat
2014-03-26 8:43 ` Ulf Hansson
0 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2014-03-26 8:37 UTC (permalink / raw)
To: Ulf Hansson; +Cc: linux-mmc@vger.kernel.org, chris@printf.net
On 18 March 2014 11:46, Seungwon Jeon <tgih.jun@samsung.com> wrote:
> On Tue, March 18, 2014, Sachin Kamat wrote:
>> On 4 March 2014 17:14, Jaehoon Chung <jh80.chung@samsung.com> wrote:
>> > Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
>>
>> Ping Ulf, Chris.
>
> Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Ping Ulf.
--
With warm regards,
Sachin
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
2014-03-26 8:37 ` Sachin Kamat
@ 2014-03-26 8:43 ` Ulf Hansson
0 siblings, 0 replies; 6+ messages in thread
From: Ulf Hansson @ 2014-03-26 8:43 UTC (permalink / raw)
To: Sachin Kamat; +Cc: linux-mmc@vger.kernel.org, chris@printf.net
On 26 March 2014 09:37, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> On 18 March 2014 11:46, Seungwon Jeon <tgih.jun@samsung.com> wrote:
>> On Tue, March 18, 2014, Sachin Kamat wrote:
>>> On 4 March 2014 17:14, Jaehoon Chung <jh80.chung@samsung.com> wrote:
>>> > Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
>>>
>>> Ping Ulf, Chris.
>>
>> Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
>
> Ping Ulf.
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
>
>
> --
> With warm regards,
> Sachin
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-03-26 8:43 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-04 5:03 [PATCH 1/1] mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops Sachin Kamat
2014-03-04 11:44 ` Jaehoon Chung
2014-03-18 4:34 ` Sachin Kamat
2014-03-18 6:16 ` Seungwon Jeon
2014-03-26 8:37 ` Sachin Kamat
2014-03-26 8:43 ` Ulf Hansson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.