* Re: [PATCHv2 1/2] bus: arm-ccn: Enable stats for CCN-512 interconnect [not found] <1570454475-2848-1-git-send-email-marek.bykowski@gmail.com> @ 2019-10-16 9:06 ` Marek Bykowski 2019-10-16 9:57 ` [PATCHv3 1/2] perf: " Marek Bykowski 2019-10-16 11:12 ` [PATCHv2 1/2] bus: " Pawel Moll 0 siblings, 2 replies; 4+ messages in thread From: Marek Bykowski @ 2019-10-16 9:06 UTC (permalink / raw) To: mark.rutland, will.deacon, pawel.moll, linux-arm-kernel, linux-kernel Add compatible string for the ARM CCN-502 interconnect Signed-off-by: Marek Bykowski <marek.bykowski@gmail.com> Signed-off-by: Boleslaw Malecki <boleslaw.malecki@tieto.com> --- Changelog v1->v2: - Change the subject to reflect where the driver got moved to (drivers/perf) from (drivers/bus). - Add credit to my work mate that helped me validate the counts from the interconnect. --- drivers/perf/arm-ccn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/perf/arm-ccn.c b/drivers/perf/arm-ccn.c index 7dd850e02f19..b6e00f35a448 100644 --- a/drivers/perf/arm-ccn.c +++ b/drivers/perf/arm-ccn.c @@ -1545,6 +1545,7 @@ static int arm_ccn_remove(struct platform_device *pdev) static const struct of_device_id arm_ccn_match[] = { { .compatible = "arm,ccn-502", }, { .compatible = "arm,ccn-504", }, + { .compatible = "arm,ccn-512", }, {}, }; MODULE_DEVICE_TABLE(of, arm_ccn_match); ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv3 1/2] perf: arm-ccn: Enable stats for CCN-512 interconnect 2019-10-16 9:06 ` [PATCHv2 1/2] bus: arm-ccn: Enable stats for CCN-512 interconnect Marek Bykowski @ 2019-10-16 9:57 ` Marek Bykowski 2019-10-28 15:43 ` Will Deacon 2019-10-16 11:12 ` [PATCHv2 1/2] bus: " Pawel Moll 1 sibling, 1 reply; 4+ messages in thread From: Marek Bykowski @ 2019-10-16 9:57 UTC (permalink / raw) To: mark.rutland, will.deacon, pawel.moll, linux-arm-kernel, linux-kernel Add compatible string for the ARM CCN-512 interconnect Signed-off-by: Marek Bykowski <marek.bykowski@gmail.com> Signed-off-by: Boleslaw Malecki <boleslaw.malecki@tieto.com> --- Changelog v2->v3 - Correcting copy-paste typo: this commit adds compatible string for CCN-512 and not for CCN-502 which has already a support for. - Now *for real* change the subject to reflect where the driver got moved to (drivers/perf) from (drivers/bus). Changelog v1->v2: - Change the subject to reflect where the driver got moved to (drivers/perf) from (drivers/bus). - Add credit to my work mate that helped me validate the counts from the interconnect. --- drivers/perf/arm-ccn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/perf/arm-ccn.c b/drivers/perf/arm-ccn.c index 7dd850e02f19..b6e00f35a448 100644 --- a/drivers/perf/arm-ccn.c +++ b/drivers/perf/arm-ccn.c @@ -1545,6 +1545,7 @@ static int arm_ccn_remove(struct platform_device *pdev) static const struct of_device_id arm_ccn_match[] = { { .compatible = "arm,ccn-502", }, { .compatible = "arm,ccn-504", }, + { .compatible = "arm,ccn-512", }, {}, }; MODULE_DEVICE_TABLE(of, arm_ccn_match); ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv3 1/2] perf: arm-ccn: Enable stats for CCN-512 interconnect 2019-10-16 9:57 ` [PATCHv3 1/2] perf: " Marek Bykowski @ 2019-10-28 15:43 ` Will Deacon 0 siblings, 0 replies; 4+ messages in thread From: Will Deacon @ 2019-10-28 15:43 UTC (permalink / raw) To: Marek Bykowski Cc: mark.rutland, will.deacon, pawel.moll, linux-arm-kernel, linux-kernel On Wed, Oct 16, 2019 at 11:57:39AM +0200, Marek Bykowski wrote: > Add compatible string for the ARM CCN-512 interconnect > > Signed-off-by: Marek Bykowski <marek.bykowski@gmail.com> > Signed-off-by: Boleslaw Malecki <boleslaw.malecki@tieto.com> I've queued this (and the docs change), but does it really need two sign-offs for a one-line change? Boleslaw isn't even on cc! Will > drivers/perf/arm-ccn.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/perf/arm-ccn.c b/drivers/perf/arm-ccn.c > index 7dd850e02f19..b6e00f35a448 100644 > --- a/drivers/perf/arm-ccn.c > +++ b/drivers/perf/arm-ccn.c > @@ -1545,6 +1545,7 @@ static int arm_ccn_remove(struct platform_device *pdev) > static const struct of_device_id arm_ccn_match[] = { > { .compatible = "arm,ccn-502", }, > { .compatible = "arm,ccn-504", }, > + { .compatible = "arm,ccn-512", }, > {}, > }; > MODULE_DEVICE_TABLE(of, arm_ccn_match); ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCHv2 1/2] bus: arm-ccn: Enable stats for CCN-512 interconnect 2019-10-16 9:06 ` [PATCHv2 1/2] bus: arm-ccn: Enable stats for CCN-512 interconnect Marek Bykowski 2019-10-16 9:57 ` [PATCHv3 1/2] perf: " Marek Bykowski @ 2019-10-16 11:12 ` Pawel Moll 1 sibling, 0 replies; 4+ messages in thread From: Pawel Moll @ 2019-10-16 11:12 UTC (permalink / raw) To: Marek Bykowski, linux-arm-kernel, linux-kernel; +Cc: Mark Rutland, will On Wed, 2019-10-16 at 10:06 +0100, Marek Bykowski wrote: > Add compatible string for the ARM CCN-502 interconnect > > Signed-off-by: Marek Bykowski <marek.bykowski@gmail.com> > Signed-off-by: Boleslaw Malecki <boleslaw.malecki@tieto.com> > --- > Changelog v1->v2: > - Change the subject to reflect where the driver got moved to (drivers/perf) from > (drivers/bus). > - Add credit to my work mate that helped me validate the counts from > the interconnect. > --- > drivers/perf/arm-ccn.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/perf/arm-ccn.c b/drivers/perf/arm-ccn.c > index 7dd850e02f19..b6e00f35a448 100644 > --- a/drivers/perf/arm-ccn.c > +++ b/drivers/perf/arm-ccn.c > @@ -1545,6 +1545,7 @@ static int arm_ccn_remove(struct platform_device *pdev) > static const struct of_device_id arm_ccn_match[] = { > { .compatible = "arm,ccn-502", }, > { .compatible = "arm,ccn-504", }, > + { .compatible = "arm,ccn-512", }, > {}, > }; > MODULE_DEVICE_TABLE(of, arm_ccn_match); Acked-by: Pawel Moll <pawel.moll@arm.com> Thanks! Pawel ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-28 15:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <1570454475-2848-1-git-send-email-marek.bykowski@gmail.com>
2019-10-16 9:06 ` [PATCHv2 1/2] bus: arm-ccn: Enable stats for CCN-512 interconnect Marek Bykowski
2019-10-16 9:57 ` [PATCHv3 1/2] perf: " Marek Bykowski
2019-10-28 15:43 ` Will Deacon
2019-10-16 11:12 ` [PATCHv2 1/2] bus: " Pawel Moll
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
Powered by JetHome