* [PATCH 1/2] mfd: pm8008: fix module autoloading [not found] <20230526091646.17318-1-johan+linaro@kernel.org> @ 2023-05-26 9:16 ` Johan Hovold 2023-05-26 9:22 ` Konrad Dybcio 2023-06-08 15:45 ` Lee Jones 0 siblings, 2 replies; 8+ messages in thread From: Johan Hovold @ 2023-05-26 9:16 UTC (permalink / raw) To: Lee Jones Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, linux-arm-msm, linux-kernel, Johan Hovold, stable Add the missing module device table alias to that the driver can be autoloaded when built as a module. Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") Cc: stable@vger.kernel.org # 5.14 Signed-off-by: Johan Hovold <johan+linaro@kernel.org> --- drivers/mfd/qcom-pm8008.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mfd/qcom-pm8008.c b/drivers/mfd/qcom-pm8008.c index 837246aab4ac..29ec3901564b 100644 --- a/drivers/mfd/qcom-pm8008.c +++ b/drivers/mfd/qcom-pm8008.c @@ -199,6 +199,7 @@ static const struct of_device_id pm8008_match[] = { { .compatible = "qcom,pm8008", }, { }, }; +MODULE_DEVICE_TABLE(of, pm8008_match); static struct i2c_driver pm8008_mfd_driver = { .driver = { -- 2.39.3 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-05-26 9:16 ` [PATCH 1/2] mfd: pm8008: fix module autoloading Johan Hovold @ 2023-05-26 9:22 ` Konrad Dybcio 2023-05-26 9:25 ` Johan Hovold 2023-06-08 15:45 ` Lee Jones 1 sibling, 1 reply; 8+ messages in thread From: Konrad Dybcio @ 2023-05-26 9:22 UTC (permalink / raw) To: Johan Hovold, Lee Jones Cc: Andy Gross, Bjorn Andersson, linux-arm-msm, linux-kernel, stable On 26.05.2023 11:16, Johan Hovold wrote: > Add the missing module device table alias to that the driver can be > autoloaded when built as a module. > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") > Cc: stable@vger.kernel.org # 5.14 Looks like the commit referenced in Fixes is from 5.13-rc1, perhaps 5.13 would be more fitting here? Konrad > Signed-off-by: Johan Hovold <johan+linaro@kernel.org> > --- > drivers/mfd/qcom-pm8008.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mfd/qcom-pm8008.c b/drivers/mfd/qcom-pm8008.c > index 837246aab4ac..29ec3901564b 100644 > --- a/drivers/mfd/qcom-pm8008.c > +++ b/drivers/mfd/qcom-pm8008.c > @@ -199,6 +199,7 @@ static const struct of_device_id pm8008_match[] = { > { .compatible = "qcom,pm8008", }, > { }, > }; > +MODULE_DEVICE_TABLE(of, pm8008_match); > > static struct i2c_driver pm8008_mfd_driver = { > .driver = { ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-05-26 9:22 ` Konrad Dybcio @ 2023-05-26 9:25 ` Johan Hovold 2023-05-26 9:27 ` Konrad Dybcio 0 siblings, 1 reply; 8+ messages in thread From: Johan Hovold @ 2023-05-26 9:25 UTC (permalink / raw) To: Konrad Dybcio Cc: Johan Hovold, Lee Jones, Andy Gross, Bjorn Andersson, linux-arm-msm, linux-kernel, stable On Fri, May 26, 2023 at 11:22:27AM +0200, Konrad Dybcio wrote: > On 26.05.2023 11:16, Johan Hovold wrote: > > Add the missing module device table alias to that the driver can be > > autoloaded when built as a module. > > > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") > > Cc: stable@vger.kernel.org # 5.14 > Looks like the commit referenced in Fixes is from 5.13-rc1, perhaps > 5.13 would be more fitting here? No, I just double checked. This driver was not present 5.13. Johan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-05-26 9:25 ` Johan Hovold @ 2023-05-26 9:27 ` Konrad Dybcio 0 siblings, 0 replies; 8+ messages in thread From: Konrad Dybcio @ 2023-05-26 9:27 UTC (permalink / raw) To: Johan Hovold Cc: Johan Hovold, Lee Jones, Andy Gross, Bjorn Andersson, linux-arm-msm, linux-kernel, stable On 26.05.2023 11:25, Johan Hovold wrote: > On Fri, May 26, 2023 at 11:22:27AM +0200, Konrad Dybcio wrote: >> On 26.05.2023 11:16, Johan Hovold wrote: >>> Add the missing module device table alias to that the driver can be >>> autoloaded when built as a module. >>> >>> Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") >>> Cc: stable@vger.kernel.org # 5.14 > >> Looks like the commit referenced in Fixes is from 5.13-rc1, perhaps >> 5.13 would be more fitting here? > > No, I just double checked. This driver was not present 5.13. Odd, I see the same thing. Anyway Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org> Konrad > > Johan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-05-26 9:16 ` [PATCH 1/2] mfd: pm8008: fix module autoloading Johan Hovold 2023-05-26 9:22 ` Konrad Dybcio @ 2023-06-08 15:45 ` Lee Jones 2023-06-09 6:21 ` Johan Hovold 1 sibling, 1 reply; 8+ messages in thread From: Lee Jones @ 2023-06-08 15:45 UTC (permalink / raw) To: Johan Hovold Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, linux-arm-msm, linux-kernel, stable On Fri, 26 May 2023, Johan Hovold wrote: > Add the missing module device table alias to that the driver can be > autoloaded when built as a module. > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") > Cc: stable@vger.kernel.org # 5.14 > Signed-off-by: Johan Hovold <johan+linaro@kernel.org> > --- > drivers/mfd/qcom-pm8008.c | 1 + > 1 file changed, 1 insertion(+) Applied, thanks -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-06-08 15:45 ` Lee Jones @ 2023-06-09 6:21 ` Johan Hovold 2023-06-09 6:38 ` Lee Jones 0 siblings, 1 reply; 8+ messages in thread From: Johan Hovold @ 2023-06-09 6:21 UTC (permalink / raw) To: Lee Jones Cc: Johan Hovold, Andy Gross, Bjorn Andersson, Konrad Dybcio, linux-arm-msm, linux-kernel, stable On Thu, Jun 08, 2023 at 04:45:03PM +0100, Lee Jones wrote: > On Fri, 26 May 2023, Johan Hovold wrote: > > > Add the missing module device table alias to that the driver can be > > autoloaded when built as a module. > > > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") > > Cc: stable@vger.kernel.org # 5.14 > > Signed-off-by: Johan Hovold <johan+linaro@kernel.org> > > --- > > drivers/mfd/qcom-pm8008.c | 1 + > > 1 file changed, 1 insertion(+) > > Applied, thanks Thanks, Lee. Did you forget to push these out? I was gonna see if you merged them for 6.4 or 6.5, but I can't seem to find them in your mfd repo. Johan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-06-09 6:21 ` Johan Hovold @ 2023-06-09 6:38 ` Lee Jones 2023-06-09 6:41 ` Johan Hovold 0 siblings, 1 reply; 8+ messages in thread From: Lee Jones @ 2023-06-09 6:38 UTC (permalink / raw) To: Johan Hovold Cc: Johan Hovold, Andy Gross, Bjorn Andersson, Konrad Dybcio, linux-arm-msm, linux-kernel, stable On Fri, 09 Jun 2023, Johan Hovold wrote: > On Thu, Jun 08, 2023 at 04:45:03PM +0100, Lee Jones wrote: > > On Fri, 26 May 2023, Johan Hovold wrote: > > > > > Add the missing module device table alias to that the driver can be > > > autoloaded when built as a module. > > > > > > Fixes: 6b149f3310a4 ("mfd: pm8008: Add driver for QCOM PM8008 PMIC") > > > Cc: stable@vger.kernel.org # 5.14 > > > Signed-off-by: Johan Hovold <johan+linaro@kernel.org> > > > --- > > > drivers/mfd/qcom-pm8008.c | 1 + > > > 1 file changed, 1 insertion(+) > > > > Applied, thanks > > Thanks, Lee. Did you forget to push these out? I was gonna see if you > merged them for 6.4 or 6.5, but I can't seem to find them in your mfd > repo. I don't tend to push daily. I can push them now if you like. These were added for v6.5. -- Lee Jones [李琼斯] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] mfd: pm8008: fix module autoloading 2023-06-09 6:38 ` Lee Jones @ 2023-06-09 6:41 ` Johan Hovold 0 siblings, 0 replies; 8+ messages in thread From: Johan Hovold @ 2023-06-09 6:41 UTC (permalink / raw) To: Lee Jones Cc: Johan Hovold, Andy Gross, Bjorn Andersson, Konrad Dybcio, linux-arm-msm, linux-kernel, stable On Fri, Jun 09, 2023 at 07:38:04AM +0100, Lee Jones wrote: > On Fri, 09 Jun 2023, Johan Hovold wrote: > > Thanks, Lee. Did you forget to push these out? I was gonna see if you > > merged them for 6.4 or 6.5, but I can't seem to find them in your mfd > > repo. > > I don't tend to push daily. I can push them now if you like. > > These were added for v6.5. Perfect, thanks! Johan ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-06-09 6:40 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20230526091646.17318-1-johan+linaro@kernel.org>
2023-05-26 9:16 ` [PATCH 1/2] mfd: pm8008: fix module autoloading Johan Hovold
2023-05-26 9:22 ` Konrad Dybcio
2023-05-26 9:25 ` Johan Hovold
2023-05-26 9:27 ` Konrad Dybcio
2023-06-08 15:45 ` Lee Jones
2023-06-09 6:21 ` Johan Hovold
2023-06-09 6:38 ` Lee Jones
2023-06-09 6:41 ` Johan Hovold
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).