* [PATCH] powerpc/85xx: fix memory controller compatible for edac
@ 2011-07-26 5:46 Shaohui Xie
2011-07-31 4:03 ` Grant Likely
0 siblings, 1 reply; 3+ messages in thread
From: Shaohui Xie @ 2011-07-26 5:46 UTC (permalink / raw)
To: linuxppc-dev; +Cc: mm-commits, Shaohui Xie, kumar.gala, avorontsov, akpm, davem
compatible in dts has been changed, so driver need to update accordingly.
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
---
apply for http://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git
'next' branch.
drivers/edac/mpc85xx_edac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
index 13f6cc5..94c064a 100644
--- a/drivers/edac/mpc85xx_edac.c
+++ b/drivers/edac/mpc85xx_edac.c
@@ -1253,7 +1253,7 @@ static struct of_device_id mpc85xx_mc_err_of_match[] = {
{ .compatible = "fsl,p1020-memory-controller", },
{ .compatible = "fsl,p1021-memory-controller", },
{ .compatible = "fsl,p2020-memory-controller", },
- { .compatible = "fsl,p4080-memory-controller", },
+ { .compatible = "fsl,qoriq-memory-controller", },
{},
};
MODULE_DEVICE_TABLE(of, mpc85xx_mc_err_of_match);
--
1.6.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/85xx: fix memory controller compatible for edac
2011-07-26 5:46 [PATCH] powerpc/85xx: fix memory controller compatible for edac Shaohui Xie
@ 2011-07-31 4:03 ` Grant Likely
2011-08-01 2:44 ` Xie Shaohui-B21989
0 siblings, 1 reply; 3+ messages in thread
From: Grant Likely @ 2011-07-31 4:03 UTC (permalink / raw)
To: Shaohui Xie; +Cc: mm-commits, kumar.gala, avorontsov, akpm, linuxppc-dev, davem
On Tue, Jul 26, 2011 at 01:46:33PM +0800, Shaohui Xie wrote:
> compatible in dts has been changed, so driver need to update accordingly.
>
> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
> ---
> apply for http://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git
> 'next' branch.
>
> drivers/edac/mpc85xx_edac.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
> index 13f6cc5..94c064a 100644
> --- a/drivers/edac/mpc85xx_edac.c
> +++ b/drivers/edac/mpc85xx_edac.c
> @@ -1253,7 +1253,7 @@ static struct of_device_id mpc85xx_mc_err_of_match[] = {
> { .compatible = "fsl,p1020-memory-controller", },
> { .compatible = "fsl,p1021-memory-controller", },
> { .compatible = "fsl,p2020-memory-controller", },
> - { .compatible = "fsl,p4080-memory-controller", },
> + { .compatible = "fsl,qoriq-memory-controller", },
Are there any implementations in the field that depend on the p4080 value?
g.
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] powerpc/85xx: fix memory controller compatible for edac
2011-07-31 4:03 ` Grant Likely
@ 2011-08-01 2:44 ` Xie Shaohui-B21989
0 siblings, 0 replies; 3+ messages in thread
From: Xie Shaohui-B21989 @ 2011-08-01 2:44 UTC (permalink / raw)
To: Grant Likely
Cc: mm-commits@vger.kernel.org, akpm@linux-foundation.org,
avorontsov@mvista.com, Gala Kumar-B11780,
linuxppc-dev@lists.ozlabs.org, davem@davemloft.net
>From: Grant Likely [mailto:glikely@secretlab.ca] On Behalf Of Grant Likely
>Sent: Sunday, July 31, 2011 12:03 PM
>To: Xie Shaohui-B21989
>Cc: linuxppc-dev@lists.ozlabs.org; Gala Kumar-B11780; mm-
>commits@vger.kernel.org; avorontsov@mvista.com; davem@davemloft.net;
>akpm@linux-foundation.org
>Subject: Re: [PATCH] powerpc/85xx: fix memory controller compatible for
>edac
>
>On Tue, Jul 26, 2011 at 01:46:33PM +0800, Shaohui Xie wrote:
>> compatible in dts has been changed, so driver need to update accordingly=
.
>>
>> Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
>> ---
>> apply for
>> http://git.kernel.org/pub/scm/linux/kernel/git/galak/powerpc.git
>> 'next' branch.
>>
>> drivers/edac/mpc85xx_edac.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
>> index 13f6cc5..94c064a 100644
>> --- a/drivers/edac/mpc85xx_edac.c
>> +++ b/drivers/edac/mpc85xx_edac.c
>> @@ -1253,7 +1253,7 @@ static struct of_device_id
>mpc85xx_mc_err_of_match[] =3D {
>> { .compatible =3D "fsl,p1020-memory-controller", },
>> { .compatible =3D "fsl,p1021-memory-controller", },
>> { .compatible =3D "fsl,p2020-memory-controller", },
>> - { .compatible =3D "fsl,p4080-memory-controller", },
>> + { .compatible =3D "fsl,qoriq-memory-controller", },
>
>Are there any implementations in the field that depend on the p4080 value?
>
[Xie Shaohui] The 'p4080' is introduced by commit cd1542c8197
edac: mpc85xx: add support for new MPCxxx/Pxxxx EDAC controllers
Simply add proper IDs into the device table.
My patch intended for fix the compliance of dts and driver.
Best Regards,=20
Shaohui Xie
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-08-01 2:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-26 5:46 [PATCH] powerpc/85xx: fix memory controller compatible for edac Shaohui Xie
2011-07-31 4:03 ` Grant Likely
2011-08-01 2:44 ` Xie Shaohui-B21989
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).