All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name
@ 2012-08-27  7:01 Seung-Woo Kim
  2012-08-27  7:11 ` [RESEND][PATCH] " Seung-Woo Kim
  0 siblings, 1 reply; 4+ messages in thread
From: Seung-Woo Kim @ 2012-08-27  7:01 UTC (permalink / raw)
  To: linux-samsung-soc, kgene.kim; +Cc: sw0312.kim, kyungmin.park, pullip.cho

This is trivial patch to mate parameter name between iommu api enabled case and
disabled case.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/include/mach/sysmmu.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/include/mach/sysmmu.h b/arch/arm/mach-exynos/include/mach/sysmmu.h
index 998daf2..81e4c66 100644
--- a/arch/arm/mach-exynos/include/mach/sysmmu.h
+++ b/arch/arm/mach-exynos/include/mach/sysmmu.h
@@ -58,7 +58,7 @@ static inline void platform_set_sysmmu(
 #endif
 
 #else /* !CONFIG_EXYNOS_DEV_SYSMMU */
-#define platform_set_sysmmu(dev, sysmmu) do { } while (0)
+#define platform_set_sysmmu(sysmu, dev) do { } while (0)
 #endif
 
 #define SYSMMU_CLOCK_DEVNAME(ipname, id) (SYSMMU_DEVNAME_BASE "." #id)
-- 
1.7.4.1

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

* [RESEND][PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name
  2012-08-27  7:01 [PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name Seung-Woo Kim
@ 2012-08-27  7:11 ` Seung-Woo Kim
  2012-08-27 11:59   ` KyongHo Cho
  0 siblings, 1 reply; 4+ messages in thread
From: Seung-Woo Kim @ 2012-08-27  7:11 UTC (permalink / raw)
  To: linux-samsung-soc, kgene.kim; +Cc: sw0312.kim, kyungmin.park, pullip.cho

This is trivial patch to mate parameter name between iommu api enabled case and
disabled case.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
Sorry about typo in previous patch.

 arch/arm/mach-exynos/include/mach/sysmmu.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/include/mach/sysmmu.h b/arch/arm/mach-exynos/include/mach/sysmmu.h
index 998daf2..81e4c66 100644
--- a/arch/arm/mach-exynos/include/mach/sysmmu.h
+++ b/arch/arm/mach-exynos/include/mach/sysmmu.h
@@ -58,7 +58,7 @@ static inline void platform_set_sysmmu(
 #endif
 
 #else /* !CONFIG_EXYNOS_DEV_SYSMMU */
-#define platform_set_sysmmu(dev, sysmmu) do { } while (0)
+#define platform_set_sysmmu(sysmmu, dev) do { } while (0)
 #endif
 
 #define SYSMMU_CLOCK_DEVNAME(ipname, id) (SYSMMU_DEVNAME_BASE "." #id)
-- 
1.7.4.1

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

* Re: [RESEND][PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name
  2012-08-27  7:11 ` [RESEND][PATCH] " Seung-Woo Kim
@ 2012-08-27 11:59   ` KyongHo Cho
  2012-08-27 18:11     ` Kukjin Kim
  0 siblings, 1 reply; 4+ messages in thread
From: KyongHo Cho @ 2012-08-27 11:59 UTC (permalink / raw)
  To: Seung-Woo Kim; +Cc: linux-samsung-soc, kgene.kim, kyungmin.park

On Mon, Aug 27, 2012 at 4:11 PM, Seung-Woo Kim <sw0312.kim@samsung.com> wrote:
> This is trivial patch to mate parameter name between iommu api enabled case and
> disabled case.
>
> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> Sorry about typo in previous patch.
>
>  arch/arm/mach-exynos/include/mach/sysmmu.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-exynos/include/mach/sysmmu.h b/arch/arm/mach-exynos/include/mach/sysmmu.h
> index 998daf2..81e4c66 100644
> --- a/arch/arm/mach-exynos/include/mach/sysmmu.h
> +++ b/arch/arm/mach-exynos/include/mach/sysmmu.h
> @@ -58,7 +58,7 @@ static inline void platform_set_sysmmu(
>  #endif
>
>  #else /* !CONFIG_EXYNOS_DEV_SYSMMU */
> -#define platform_set_sysmmu(dev, sysmmu) do { } while (0)
> +#define platform_set_sysmmu(sysmmu, dev) do { } while (0)
>  #endif
>

Thank you for your correction.

KyongHo

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

* Re: [RESEND][PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name
  2012-08-27 11:59   ` KyongHo Cho
@ 2012-08-27 18:11     ` Kukjin Kim
  0 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2012-08-27 18:11 UTC (permalink / raw)
  To: KyongHo Cho; +Cc: Seung-Woo Kim, linux-samsung-soc, kgene.kim, kyungmin.park

On 08/27/12 04:59, KyongHo Cho wrote:
> On Mon, Aug 27, 2012 at 4:11 PM, Seung-Woo Kim<sw0312.kim@samsung.com>  wrote:
>> This is trivial patch to mate parameter name between iommu api enabled case and
>> disabled case.
>>
>> Signed-off-by: Seung-Woo Kim<sw0312.kim@samsung.com>
>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
>> ---
>> Sorry about typo in previous patch.
>>
>>   arch/arm/mach-exynos/include/mach/sysmmu.h |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/arm/mach-exynos/include/mach/sysmmu.h b/arch/arm/mach-exynos/include/mach/sysmmu.h
>> index 998daf2..81e4c66 100644
>> --- a/arch/arm/mach-exynos/include/mach/sysmmu.h
>> +++ b/arch/arm/mach-exynos/include/mach/sysmmu.h
>> @@ -58,7 +58,7 @@ static inline void platform_set_sysmmu(
>>   #endif
>>
>>   #else /* !CONFIG_EXYNOS_DEV_SYSMMU */
>> -#define platform_set_sysmmu(dev, sysmmu) do { } while (0)
>> +#define platform_set_sysmmu(sysmmu, dev) do { } while (0)
>>   #endif
>>
>
> Thank you for your correction.
>

OK, applied with KyongHo's ack.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

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

end of thread, other threads:[~2012-08-27 18:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-27  7:01 [PATCH] ARM: Exynos4: fixed SYSMMU setup definition to mate parameter name Seung-Woo Kim
2012-08-27  7:11 ` [RESEND][PATCH] " Seung-Woo Kim
2012-08-27 11:59   ` KyongHo Cho
2012-08-27 18:11     ` Kukjin Kim

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.