* [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor
@ 2012-10-12 9:49 Tomasz Figa
2012-10-21 16:22 ` Tomasz Figa
2012-10-21 23:50 ` Kukjin Kim
0 siblings, 2 replies; 5+ messages in thread
From: Tomasz Figa @ 2012-10-12 9:49 UTC (permalink / raw)
To: linux-arm-kernel
This patch adds missing initializer of .smp field of machine descriptor
of Exynos 4 DT machine.
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
---
arch/arm/mach-exynos/mach-exynos4-dt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c b/arch/arm/mach-exynos/mach-exynos4-dt.c
index 7222e3c..d6bdcfb 100644
--- a/arch/arm/mach-exynos/mach-exynos4-dt.c
+++ b/arch/arm/mach-exynos/mach-exynos4-dt.c
@@ -119,6 +119,7 @@ static char const *exynos4_dt_compat[] __initdata = {
DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
/* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
+ .smp = smp_ops(exynos_smp_ops),
.init_irq = exynos4_init_irq,
.map_io = exynos4_dt_map_io,
.handle_irq = gic_handle_irq,
--
1.7.12
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor
2012-10-12 9:49 [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor Tomasz Figa
@ 2012-10-21 16:22 ` Tomasz Figa
2012-10-21 23:44 ` Kyungmin Park
2012-10-21 23:50 ` Kukjin Kim
1 sibling, 1 reply; 5+ messages in thread
From: Tomasz Figa @ 2012-10-21 16:22 UTC (permalink / raw)
To: linux-arm-kernel
On Friday 12 of October 2012 11:49:38 Tomasz Figa wrote:
> This patch adds missing initializer of .smp field of machine descriptor
> of Exynos 4 DT machine.
>
> Signed-off-by: Tomasz Figa <t.figa@samsung.com>
> ---
> arch/arm/mach-exynos/mach-exynos4-dt.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c
> b/arch/arm/mach-exynos/mach-exynos4-dt.c index 7222e3c..d6bdcfb 100644
> --- a/arch/arm/mach-exynos/mach-exynos4-dt.c
> +++ b/arch/arm/mach-exynos/mach-exynos4-dt.c
> @@ -119,6 +119,7 @@ static char const *exynos4_dt_compat[] __initdata =
> {
>
> DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device
> Tree)") /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
> + .smp = smp_ops(exynos_smp_ops),
> .init_irq = exynos4_init_irq,
> .map_io = exynos4_dt_map_io,
> .handle_irq = gic_handle_irq,
Ping. I think this should be considered a fix.
Best regards,
Tomasz Figa
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor
2012-10-21 16:22 ` Tomasz Figa
@ 2012-10-21 23:44 ` Kyungmin Park
2012-10-22 0:29 ` Kukjin Kim
0 siblings, 1 reply; 5+ messages in thread
From: Kyungmin Park @ 2012-10-21 23:44 UTC (permalink / raw)
To: linux-arm-kernel
+ Arnd, Olof,
Tomasz,
I think it's better to add arm-soc maintainers at CC when send the patches.
Samsung patches doesn't handled or merged with proper time.
Thank you,
Kyungmin Park
On 10/22/12, Tomasz Figa <tomasz.figa@gmail.com> wrote:
> On Friday 12 of October 2012 11:49:38 Tomasz Figa wrote:
>> This patch adds missing initializer of .smp field of machine descriptor
>> of Exynos 4 DT machine.
>>
>> Signed-off-by: Tomasz Figa <t.figa@samsung.com>
>> ---
>> arch/arm/mach-exynos/mach-exynos4-dt.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c
>> b/arch/arm/mach-exynos/mach-exynos4-dt.c index 7222e3c..d6bdcfb 100644
>> --- a/arch/arm/mach-exynos/mach-exynos4-dt.c
>> +++ b/arch/arm/mach-exynos/mach-exynos4-dt.c
>> @@ -119,6 +119,7 @@ static char const *exynos4_dt_compat[] __initdata =
>> {
>>
>> DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device
>> Tree)") /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
>> + .smp = smp_ops(exynos_smp_ops),
>> .init_irq = exynos4_init_irq,
>> .map_io = exynos4_dt_map_io,
>> .handle_irq = gic_handle_irq,
>
> Ping. I think this should be considered a fix.
>
> Best regards,
> Tomasz Figa
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc"
> in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor
2012-10-12 9:49 [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor Tomasz Figa
2012-10-21 16:22 ` Tomasz Figa
@ 2012-10-21 23:50 ` Kukjin Kim
1 sibling, 0 replies; 5+ messages in thread
From: Kukjin Kim @ 2012-10-21 23:50 UTC (permalink / raw)
To: linux-arm-kernel
Tomasz Figa wrote:
>
> This patch adds missing initializer of .smp field of machine descriptor
> of Exynos 4 DT machine.
>
> Signed-off-by: Tomasz Figa <t.figa@samsung.com>
> ---
> arch/arm/mach-exynos/mach-exynos4-dt.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c b/arch/arm/mach-
> exynos/mach-exynos4-dt.c
> index 7222e3c..d6bdcfb 100644
> --- a/arch/arm/mach-exynos/mach-exynos4-dt.c
> +++ b/arch/arm/mach-exynos/mach-exynos4-dt.c
> @@ -119,6 +119,7 @@ static char const *exynos4_dt_compat[] __initdata = {
>
> DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device
Tree)")
> /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
> + .smp = smp_ops(exynos_smp_ops),
> .init_irq = exynos4_init_irq,
> .map_io = exynos4_dt_map_io,
> .handle_irq = gic_handle_irq,
> --
> 1.7.12
Yes, right. Applied.
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] 5+ messages in thread
* [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor
2012-10-21 23:44 ` Kyungmin Park
@ 2012-10-22 0:29 ` Kukjin Kim
0 siblings, 0 replies; 5+ messages in thread
From: Kukjin Kim @ 2012-10-22 0:29 UTC (permalink / raw)
To: linux-arm-kernel
Kyungmin Park wrote:
>
> + Arnd, Olof,
>
> Tomasz,
> I think it's better to add arm-soc maintainers at CC when send the
patches.
> Samsung patches doesn't handled or merged with proper time.
>
I did just now. Sorry for late.
[...]
> > Ping. I think this should be considered a fix.
> >
Tomasz, yes I applied this in my -fix. Note this will be sent to upstream
with other Samsung fixes during 3.7-rc, probably in a couple of days.
Thanks for your reminder.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-10-22 0:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-12 9:49 [PATCH] ARM: EXYNOS: exynos4-dt: Set .smp field of machine descriptor Tomasz Figa
2012-10-21 16:22 ` Tomasz Figa
2012-10-21 23:44 ` Kyungmin Park
2012-10-22 0:29 ` Kukjin Kim
2012-10-21 23:50 ` Kukjin Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox