All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops
@ 2013-10-08 10:51 Sachin Kamat
       [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2013-10-08 10:51 UTC (permalink / raw)
  To: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
  Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, hdoyu-DDmLM1+adcrQT0dZR+AlfA,
	joro-zLv9SwRftAIdnm+yROfE0A, sachin.kamat-QSEj5FYQhm4dnm+yROfE0A

'tegra_gart_pm_ops' is local to this file. Make it static.

Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
 drivers/iommu/tegra-gart.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iommu/tegra-gart.c b/drivers/iommu/tegra-gart.c
index f75483a..dba1a9f 100644
--- a/drivers/iommu/tegra-gart.c
+++ b/drivers/iommu/tegra-gart.c
@@ -411,7 +411,7 @@ static int tegra_gart_remove(struct platform_device *pdev)
 	return 0;
 }
 
-const struct dev_pm_ops tegra_gart_pm_ops = {
+static const struct dev_pm_ops tegra_gart_pm_ops = {
 	.suspend	= tegra_gart_suspend,
 	.resume		= tegra_gart_resume,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] iommu/tegra-smmu: Staticize tegra_smmu_pm_ops
       [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2013-10-08 10:51   ` Sachin Kamat
       [not found]     ` <1381229464-28017-2-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  2013-10-08 11:07   ` [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops Hiroshi Doyu
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 6+ messages in thread
From: Sachin Kamat @ 2013-10-08 10:51 UTC (permalink / raw)
  To: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
  Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, sachin.kamat-QSEj5FYQhm4dnm+yROfE0A

'tegra_smmu_pm_ops' is used only in this file. Make it static.

Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
 drivers/iommu/tegra-smmu.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iommu/tegra-smmu.c b/drivers/iommu/tegra-smmu.c
index 34374b3..605b5b4 100644
--- a/drivers/iommu/tegra-smmu.c
+++ b/drivers/iommu/tegra-smmu.c
@@ -1254,7 +1254,7 @@ static int tegra_smmu_remove(struct platform_device *pdev)
 	return 0;
 }
 
-const struct dev_pm_ops tegra_smmu_pm_ops = {
+static const struct dev_pm_ops tegra_smmu_pm_ops = {
 	.suspend	= tegra_smmu_suspend,
 	.resume		= tegra_smmu_resume,
 };
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/2] iommu/tegra-smmu: Staticize tegra_smmu_pm_ops
       [not found]     ` <1381229464-28017-2-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2013-10-08 11:07       ` Hiroshi Doyu
  0 siblings, 0 replies; 6+ messages in thread
From: Hiroshi Doyu @ 2013-10-08 11:07 UTC (permalink / raw)
  To: Sachin Kamat, joro-zLv9SwRftAIdnm+yROfE0A
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

On Tue, 8 Oct 2013 12:51:04 +0200
Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> wrote:

> 'tegra_smmu_pm_ops' is used only in this file. Make it static.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Acked-by: Hiroshi Doyu <hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops
       [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  2013-10-08 10:51   ` [PATCH 2/2] iommu/tegra-smmu: Staticize tegra_smmu_pm_ops Sachin Kamat
@ 2013-10-08 11:07   ` Hiroshi Doyu
  2013-10-29 11:43   ` Sachin Kamat
  2013-11-01 13:23   ` Joerg Roedel
  3 siblings, 0 replies; 6+ messages in thread
From: Hiroshi Doyu @ 2013-10-08 11:07 UTC (permalink / raw)
  To: Sachin Kamat, joro-zLv9SwRftAIdnm+yROfE0A
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

On Tue, 8 Oct 2013 12:51:03 +0200
Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> wrote:

> 'tegra_gart_pm_ops' is local to this file. Make it static.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Acked-by: Hiroshi Doyu <hdoyu-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops
       [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  2013-10-08 10:51   ` [PATCH 2/2] iommu/tegra-smmu: Staticize tegra_smmu_pm_ops Sachin Kamat
  2013-10-08 11:07   ` [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops Hiroshi Doyu
@ 2013-10-29 11:43   ` Sachin Kamat
  2013-11-01 13:23   ` Joerg Roedel
  3 siblings, 0 replies; 6+ messages in thread
From: Sachin Kamat @ 2013-10-29 11:43 UTC (permalink / raw)
  To: Linux IOMMU; +Cc: Sachin Kamat

Hi Joerg,

On 8 October 2013 16:21, Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> wrote:
> 'tegra_gart_pm_ops' is local to this file. Make it static.
>
> Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> ---
>  drivers/iommu/tegra-gart.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/iommu/tegra-gart.c b/drivers/iommu/tegra-gart.c
> index f75483a..dba1a9f 100644
> --- a/drivers/iommu/tegra-gart.c
> +++ b/drivers/iommu/tegra-gart.c
> @@ -411,7 +411,7 @@ static int tegra_gart_remove(struct platform_device *pdev)
>         return 0;
>  }
>
> -const struct dev_pm_ops tegra_gart_pm_ops = {
> +static const struct dev_pm_ops tegra_gart_pm_ops = {
>         .suspend        = tegra_gart_suspend,
>         .resume         = tegra_gart_resume,
>  };
> --
> 1.7.9.5
>

Gentle ping on this series.


-- 
With warm regards,
Sachin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops
       [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
                     ` (2 preceding siblings ...)
  2013-10-29 11:43   ` Sachin Kamat
@ 2013-11-01 13:23   ` Joerg Roedel
  3 siblings, 0 replies; 6+ messages in thread
From: Joerg Roedel @ 2013-11-01 13:23 UTC (permalink / raw)
  To: Sachin Kamat
  Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On Tue, Oct 08, 2013 at 04:21:03PM +0530, Sachin Kamat wrote:
> 'tegra_gart_pm_ops' is local to this file. Make it static.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Applied both, thanks.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-11-01 13:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-08 10:51 [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops Sachin Kamat
     [not found] ` <1381229464-28017-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-10-08 10:51   ` [PATCH 2/2] iommu/tegra-smmu: Staticize tegra_smmu_pm_ops Sachin Kamat
     [not found]     ` <1381229464-28017-2-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-10-08 11:07       ` Hiroshi Doyu
2013-10-08 11:07   ` [PATCH 1/2] iommu/tegra-gart: Staticize tegra_gart_pm_ops Hiroshi Doyu
2013-10-29 11:43   ` Sachin Kamat
2013-11-01 13:23   ` Joerg Roedel

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.