diff mbox

[v2,1/2] PM / devfreq: exynos-nocp: Select REGMAP_MMIO

Message ID 1474805638-30407-1-git-send-email-axel.lin@ingics.com (mailing list archive)
State Accepted, archived
Delegated to: Rafael Wysocki
Headers show

Commit Message

Axel Lin Sept. 25, 2016, 12:13 p.m. UTC
This driver uses devm_regmap_init_mmio(), so select REGMAP_MMIO to avoid
build failure.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
---
v2: fix typo in commit log and also add Chanwoo's Ack.
This one is a build fix, I think it should be for v4.8.
 drivers/devfreq/event/Kconfig | 1 +
 1 file changed, 1 insertion(+)

Comments

Rafael J. Wysocki Sept. 29, 2016, 12:29 p.m. UTC | #1
On Sunday, September 25, 2016 08:13:57 PM Axel Lin wrote:
> This driver uses devm_regmap_init_mmio(), so select REGMAP_MMIO to avoid
> build failure.
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
> ---
> v2: fix typo in commit log and also add Chanwoo's Ack.
> This one is a build fix, I think it should be for v4.8.
>  drivers/devfreq/event/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/devfreq/event/Kconfig b/drivers/devfreq/event/Kconfig
> index 0fdae86..cd94980 100644
> --- a/drivers/devfreq/event/Kconfig
> +++ b/drivers/devfreq/event/Kconfig
> @@ -17,6 +17,7 @@ config DEVFREQ_EVENT_EXYNOS_NOCP
>  	tristate "EXYNOS NoC (Network On Chip) Probe DEVFREQ event Driver"
>  	depends on ARCH_EXYNOS || COMPILE_TEST
>  	select PM_OPP
> +	select REGMAP_MMIO
>  	help
>  	  This add the devfreq-event driver for Exynos SoC. It provides NoC
>  	  (Network on Chip) Probe counters to measure the bandwidth of AXI bus.
> 

MyungJoo, I can apply this one and the [2/2] directly.  Should I do that?

Thanks,
Rafael

--
To unsubscribe from this list: send the line "unsubscribe linux-pm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
MyungJoo Ham Sept. 30, 2016, 1:46 p.m. UTC | #2
On Thu, Sep 29, 2016 at 9:29 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote:
> On Sunday, September 25, 2016 08:13:57 PM Axel Lin wrote:
>> This driver uses devm_regmap_init_mmio(), so select REGMAP_MMIO to avoid
>> build failure.
>>
>> Signed-off-by: Axel Lin <axel.lin@ingics.com>
>> Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
>> ---
>> v2: fix typo in commit log and also add Chanwoo's Ack.
>> This one is a build fix, I think it should be for v4.8.
>>  drivers/devfreq/event/Kconfig | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/devfreq/event/Kconfig b/drivers/devfreq/event/Kconfig
>> index 0fdae86..cd94980 100644
>> --- a/drivers/devfreq/event/Kconfig
>> +++ b/drivers/devfreq/event/Kconfig
>> @@ -17,6 +17,7 @@ config DEVFREQ_EVENT_EXYNOS_NOCP
>>       tristate "EXYNOS NoC (Network On Chip) Probe DEVFREQ event Driver"
>>       depends on ARCH_EXYNOS || COMPILE_TEST
>>       select PM_OPP
>> +     select REGMAP_MMIO
>>       help
>>         This add the devfreq-event driver for Exynos SoC. It provides NoC
>>         (Network on Chip) Probe counters to measure the bandwidth of AXI bus.
>>
>
> MyungJoo, I can apply this one and the [2/2] directly.  Should I do that?
>
> Thanks,
> Rafael


Yes, sure. Those two fixes look good. Thanks.




Cheers,
MyungJoo

>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
Rafael J. Wysocki Oct. 12, 2016, 8:08 p.m. UTC | #3
On Friday, September 30, 2016 10:46:04 PM MyungJoo Ham wrote:
> On Thu, Sep 29, 2016 at 9:29 PM, Rafael J. Wysocki <rjw@rjwysocki.net> wrote:
> > On Sunday, September 25, 2016 08:13:57 PM Axel Lin wrote:
> >> This driver uses devm_regmap_init_mmio(), so select REGMAP_MMIO to avoid
> >> build failure.
> >>
> >> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> >> Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
> >> ---
> >> v2: fix typo in commit log and also add Chanwoo's Ack.
> >> This one is a build fix, I think it should be for v4.8.
> >>  drivers/devfreq/event/Kconfig | 1 +
> >>  1 file changed, 1 insertion(+)
> >>
> >> diff --git a/drivers/devfreq/event/Kconfig b/drivers/devfreq/event/Kconfig
> >> index 0fdae86..cd94980 100644
> >> --- a/drivers/devfreq/event/Kconfig
> >> +++ b/drivers/devfreq/event/Kconfig
> >> @@ -17,6 +17,7 @@ config DEVFREQ_EVENT_EXYNOS_NOCP
> >>       tristate "EXYNOS NoC (Network On Chip) Probe DEVFREQ event Driver"
> >>       depends on ARCH_EXYNOS || COMPILE_TEST
> >>       select PM_OPP
> >> +     select REGMAP_MMIO
> >>       help
> >>         This add the devfreq-event driver for Exynos SoC. It provides NoC
> >>         (Network on Chip) Probe counters to measure the bandwidth of AXI bus.
> >>
> >
> > MyungJoo, I can apply this one and the [2/2] directly.  Should I do that?
> >
> > Thanks,
> > Rafael
> 
> 
> Yes, sure. Those two fixes look good. Thanks.

OK, applied.

Thanks,
Rafael

--
To unsubscribe from this list: send the line "unsubscribe linux-pm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/devfreq/event/Kconfig b/drivers/devfreq/event/Kconfig
index 0fdae86..cd94980 100644
--- a/drivers/devfreq/event/Kconfig
+++ b/drivers/devfreq/event/Kconfig
@@ -17,6 +17,7 @@  config DEVFREQ_EVENT_EXYNOS_NOCP
 	tristate "EXYNOS NoC (Network On Chip) Probe DEVFREQ event Driver"
 	depends on ARCH_EXYNOS || COMPILE_TEST
 	select PM_OPP
+	select REGMAP_MMIO
 	help
 	  This add the devfreq-event driver for Exynos SoC. It provides NoC
 	  (Network on Chip) Probe counters to measure the bandwidth of AXI bus.