* [PATCH v2] xen/arm: Fix platform name to xilinx_zynqmp from xgene_storm
@ 2018-03-18 9:20 Amit Singh Tomar
2018-03-18 15:00 ` Edgar E. Iglesias
0 siblings, 1 reply; 3+ messages in thread
From: Amit Singh Tomar @ 2018-03-18 9:20 UTC (permalink / raw)
To: xen-devel
Cc: edgar.iglesias, andre.przywara, julien.grall, sstabellini,
Amit Singh Tomar
Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
---
Changes since v1:
* Addressed Andre's comment.
---
xen/arch/arm/platforms/xilinx-zynqmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/xen/arch/arm/platforms/xilinx-zynqmp.c b/xen/arch/arm/platforms/xilinx-zynqmp.c
index 2adee91..d8ceded 100644
--- a/xen/arch/arm/platforms/xilinx-zynqmp.c
+++ b/xen/arch/arm/platforms/xilinx-zynqmp.c
@@ -32,7 +32,7 @@ static const struct dt_device_match zynqmp_blacklist_dev[] __initconst =
{ /* sentinel */ },
};
-PLATFORM_START(xgene_storm, "Xilinx ZynqMP")
+PLATFORM_START(xilinx_zynqmp, "Xilinx ZynqMP")
.compatible = zynqmp_dt_compat,
.blacklist_dev = zynqmp_blacklist_dev,
PLATFORM_END
--
1.9.1
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] xen/arm: Fix platform name to xilinx_zynqmp from xgene_storm
2018-03-18 9:20 [PATCH v2] xen/arm: Fix platform name to xilinx_zynqmp from xgene_storm Amit Singh Tomar
@ 2018-03-18 15:00 ` Edgar E. Iglesias
2018-03-19 9:23 ` Julien Grall
0 siblings, 1 reply; 3+ messages in thread
From: Edgar E. Iglesias @ 2018-03-18 15:00 UTC (permalink / raw)
To: Amit Singh Tomar; +Cc: xen-devel, julien.grall, sstabellini, andre.przywara
On Sun, Mar 18, 2018 at 02:50:26PM +0530, Amit Singh Tomar wrote:
> Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> ---
> Changes since v1:
> * Addressed Andre's comment.
> ---
> xen/arch/arm/platforms/xilinx-zynqmp.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/xen/arch/arm/platforms/xilinx-zynqmp.c b/xen/arch/arm/platforms/xilinx-zynqmp.c
> index 2adee91..d8ceded 100644
> --- a/xen/arch/arm/platforms/xilinx-zynqmp.c
> +++ b/xen/arch/arm/platforms/xilinx-zynqmp.c
> @@ -32,7 +32,7 @@ static const struct dt_device_match zynqmp_blacklist_dev[] __initconst =
> { /* sentinel */ },
> };
>
> -PLATFORM_START(xgene_storm, "Xilinx ZynqMP")
> +PLATFORM_START(xilinx_zynqmp, "Xilinx ZynqMP")
> .compatible = zynqmp_dt_compat,
> .blacklist_dev = zynqmp_blacklist_dev,
> PLATFORM_END
> --
> 1.9.1
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] xen/arm: Fix platform name to xilinx_zynqmp from xgene_storm
2018-03-18 15:00 ` Edgar E. Iglesias
@ 2018-03-19 9:23 ` Julien Grall
0 siblings, 0 replies; 3+ messages in thread
From: Julien Grall @ 2018-03-19 9:23 UTC (permalink / raw)
To: Edgar E. Iglesias, Amit Singh Tomar
Cc: xen-devel, sstabellini, andre.przywara
Hi,
On 03/18/2018 03:00 PM, Edgar E. Iglesias wrote:
> On Sun, Mar 18, 2018 at 02:50:26PM +0530, Amit Singh Tomar wrote:
>> Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
>
> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Acked-by: Julien Grall <julien.grall@arm.com>
And committed.
Cheers,
>
>
>> ---
>> Changes since v1:
>> * Addressed Andre's comment.
>> ---
>> xen/arch/arm/platforms/xilinx-zynqmp.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/xen/arch/arm/platforms/xilinx-zynqmp.c b/xen/arch/arm/platforms/xilinx-zynqmp.c
>> index 2adee91..d8ceded 100644
>> --- a/xen/arch/arm/platforms/xilinx-zynqmp.c
>> +++ b/xen/arch/arm/platforms/xilinx-zynqmp.c
>> @@ -32,7 +32,7 @@ static const struct dt_device_match zynqmp_blacklist_dev[] __initconst =
>> { /* sentinel */ },
>> };
>>
>> -PLATFORM_START(xgene_storm, "Xilinx ZynqMP")
>> +PLATFORM_START(xilinx_zynqmp, "Xilinx ZynqMP")
>> .compatible = zynqmp_dt_compat,
>> .blacklist_dev = zynqmp_blacklist_dev,
>> PLATFORM_END
>> --
>> 1.9.1
>>
--
Julien Grall
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-19 1:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-18 9:20 [PATCH v2] xen/arm: Fix platform name to xilinx_zynqmp from xgene_storm Amit Singh Tomar
2018-03-18 15:00 ` Edgar E. Iglesias
2018-03-19 9:23 ` Julien Grall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).