linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible
@ 2021-02-28 12:41 Konrad Dybcio
  2021-02-28 12:41 ` [PATCH 2/2] video: " Konrad Dybcio
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Konrad Dybcio @ 2021-02-28 12:41 UTC (permalink / raw)
  To: phone-devel
  Cc: ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Konrad Dybcio,
	Lee Jones, Daniel Thompson, Jingoo Han, Pavel Machek, Dan Murphy,
	Rob Herring, Andy Gross, Bjorn Andersson, Kiran Gunda, dri-devel,
	linux-leds, devicetree, linux-kernel, linux-arm-msm, linux-fbdev

Document the newly added PMI8994 compatible.

Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
---
 Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml b/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
index 47938e372987..d839e75d9788 100644
--- a/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
+++ b/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
@@ -19,6 +19,7 @@ properties:
   compatible:
     enum:
       - qcom,pm8941-wled
+      - qcom,pmi8994-wled
       - qcom,pmi8998-wled
       - qcom,pm660l-wled
       - qcom,pm8150l-wled
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-02-28 12:41 [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible Konrad Dybcio
@ 2021-02-28 12:41 ` Konrad Dybcio
  2021-03-22 16:18   ` Daniel Thompson
  2021-03-08 17:23 ` [PATCH 1/2] dt-bindings: leds: " Rob Herring
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 13+ messages in thread
From: Konrad Dybcio @ 2021-02-28 12:41 UTC (permalink / raw)
  To: phone-devel
  Cc: ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Konrad Dybcio,
	Lee Jones, Daniel Thompson, Jingoo Han, Pavel Machek, Dan Murphy,
	Rob Herring, Andy Gross, Bjorn Andersson, Kiran Gunda, dri-devel,
	linux-leds, devicetree, linux-kernel, linux-arm-msm, linux-fbdev

Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.

Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
---
 drivers/video/backlight/qcom-wled.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
index 3bc7800eb0a9..497b9035a908 100644
--- a/drivers/video/backlight/qcom-wled.c
+++ b/drivers/video/backlight/qcom-wled.c
@@ -1704,6 +1704,7 @@ static int wled_remove(struct platform_device *pdev)
 
 static const struct of_device_id wled_match_table[] = {
 	{ .compatible = "qcom,pm8941-wled", .data = (void *)3 },
+	{ .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
 	{ .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
 	{ .compatible = "qcom,pm660l-wled", .data = (void *)4 },
 	{ .compatible = "qcom,pm8150l-wled", .data = (void *)5 },
-- 
2.30.1


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible
  2021-02-28 12:41 [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible Konrad Dybcio
  2021-02-28 12:41 ` [PATCH 2/2] video: " Konrad Dybcio
@ 2021-03-08 17:23 ` Rob Herring
  2021-03-10  9:21 ` Lee Jones
  2021-03-22 16:17 ` Daniel Thompson
  3 siblings, 0 replies; 13+ messages in thread
From: Rob Herring @ 2021-03-08 17:23 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: ~postmarketos/upstreaming, devicetree, angelogioacchino.delregno,
	Kiran Gunda, Daniel Thompson, dri-devel, Andy Gross, Rob Herring,
	martin.botka, Bjorn Andersson, Lee Jones, linux-arm-msm,
	phone-devel, linux-leds, Dan Murphy, Jingoo Han, Pavel Machek,
	linux-fbdev, linux-kernel, marijn.suijten

On Sun, 28 Feb 2021 13:41:04 +0100, Konrad Dybcio wrote:
> Document the newly added PMI8994 compatible.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> ---
>  Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible
  2021-02-28 12:41 [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible Konrad Dybcio
  2021-02-28 12:41 ` [PATCH 2/2] video: " Konrad Dybcio
  2021-03-08 17:23 ` [PATCH 1/2] dt-bindings: leds: " Rob Herring
@ 2021-03-10  9:21 ` Lee Jones
  2021-03-22 16:17 ` Daniel Thompson
  3 siblings, 0 replies; 13+ messages in thread
From: Lee Jones @ 2021-03-10  9:21 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: phone-devel, ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Daniel Thompson,
	Jingoo Han, Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Sun, 28 Feb 2021, Konrad Dybcio wrote:

> Document the newly added PMI8994 compatible.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>

Applied, thanks.

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible
  2021-02-28 12:41 [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible Konrad Dybcio
                   ` (2 preceding siblings ...)
  2021-03-10  9:21 ` Lee Jones
@ 2021-03-22 16:17 ` Daniel Thompson
  3 siblings, 0 replies; 13+ messages in thread
From: Daniel Thompson @ 2021-03-22 16:17 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: phone-devel, ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Lee Jones, Jingoo Han,
	Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Sun, Feb 28, 2021 at 01:41:04PM +0100, Konrad Dybcio wrote:
> Document the newly added PMI8994 compatible.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>

(For Lee) Acked-by: Daniel Thompson <daniel.thompson@linaro.org>


Daniel.


> ---
>  Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml b/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
> index 47938e372987..d839e75d9788 100644
> --- a/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
> +++ b/Documentation/devicetree/bindings/leds/backlight/qcom-wled.yaml
> @@ -19,6 +19,7 @@ properties:
>    compatible:
>      enum:
>        - qcom,pm8941-wled
> +      - qcom,pmi8994-wled
>        - qcom,pmi8998-wled
>        - qcom,pm660l-wled
>        - qcom,pm8150l-wled
> -- 
> 2.30.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-02-28 12:41 ` [PATCH 2/2] video: " Konrad Dybcio
@ 2021-03-22 16:18   ` Daniel Thompson
  2021-03-23  8:39     ` Lee Jones
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Thompson @ 2021-03-22 16:18 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: phone-devel, ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Lee Jones, Jingoo Han,
	Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>

Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>


Daniel.


> ---
>  drivers/video/backlight/qcom-wled.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
> index 3bc7800eb0a9..497b9035a908 100644
> --- a/drivers/video/backlight/qcom-wled.c
> +++ b/drivers/video/backlight/qcom-wled.c
> @@ -1704,6 +1704,7 @@ static int wled_remove(struct platform_device *pdev)
>  
>  static const struct of_device_id wled_match_table[] = {
>  	{ .compatible = "qcom,pm8941-wled", .data = (void *)3 },
> +	{ .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
>  	{ .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
>  	{ .compatible = "qcom,pm660l-wled", .data = (void *)4 },
>  	{ .compatible = "qcom,pm8150l-wled", .data = (void *)5 },
> -- 
> 2.30.1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-22 16:18   ` Daniel Thompson
@ 2021-03-23  8:39     ` Lee Jones
  2021-03-23  9:35       ` Daniel Thompson
                         ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Lee Jones @ 2021-03-23  8:39 UTC (permalink / raw)
  To: Daniel Thompson
  Cc: Konrad Dybcio, phone-devel, ~postmarketos/upstreaming,
	martin.botka, angelogioacchino.delregno, marijn.suijten,
	Jingoo Han, Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Mon, 22 Mar 2021, Daniel Thompson wrote:

> On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> > Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> > 
> > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> 
> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>

Why are you Reviewing/Acking a patch that was applied on the 10th?

> > ---
> >  drivers/video/backlight/qcom-wled.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
> > index 3bc7800eb0a9..497b9035a908 100644
> > --- a/drivers/video/backlight/qcom-wled.c
> > +++ b/drivers/video/backlight/qcom-wled.c
> > @@ -1704,6 +1704,7 @@ static int wled_remove(struct platform_device *pdev)
> >  
> >  static const struct of_device_id wled_match_table[] = {
> >  	{ .compatible = "qcom,pm8941-wled", .data = (void *)3 },
> > +	{ .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
> >  	{ .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
> >  	{ .compatible = "qcom,pm660l-wled", .data = (void *)4 },
> >  	{ .compatible = "qcom,pm8150l-wled", .data = (void *)5 },

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-23  8:39     ` Lee Jones
@ 2021-03-23  9:35       ` Daniel Thompson
  2021-03-23  9:42         ` Lee Jones
  2021-03-24  8:54       ` Geert Uytterhoeven
  2021-05-27 16:09       ` Konrad Dybcio
  2 siblings, 1 reply; 13+ messages in thread
From: Daniel Thompson @ 2021-03-23  9:35 UTC (permalink / raw)
  To: Lee Jones
  Cc: Konrad Dybcio, phone-devel, ~postmarketos/upstreaming,
	martin.botka, angelogioacchino.delregno, marijn.suijten,
	Jingoo Han, Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Tue, Mar 23, 2021 at 08:39:35AM +0000, Lee Jones wrote:
> On Mon, 22 Mar 2021, Daniel Thompson wrote:
> 
> > On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> > > Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> > > 
> > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> > 
> > Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
> 
> Why are you Reviewing/Acking a patch that was applied on the 10th?

Simply an oversight. Looks like I forgot to remove it from my backlog
when it was applied.


Daniel.


> 
> > > ---
> > >  drivers/video/backlight/qcom-wled.c | 1 +
> > >  1 file changed, 1 insertion(+)
> > > 
> > > diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
> > > index 3bc7800eb0a9..497b9035a908 100644
> > > --- a/drivers/video/backlight/qcom-wled.c
> > > +++ b/drivers/video/backlight/qcom-wled.c
> > > @@ -1704,6 +1704,7 @@ static int wled_remove(struct platform_device *pdev)
> > >  
> > >  static const struct of_device_id wled_match_table[] = {
> > >  	{ .compatible = "qcom,pm8941-wled", .data = (void *)3 },
> > > +	{ .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
> > >  	{ .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
> > >  	{ .compatible = "qcom,pm660l-wled", .data = (void *)4 },
> > >  	{ .compatible = "qcom,pm8150l-wled", .data = (void *)5 },
> 
> -- 
> Lee Jones [李琼斯]
> Senior Technical Lead - Developer Services
> Linaro.org │ Open source software for Arm SoCs
> Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-23  9:35       ` Daniel Thompson
@ 2021-03-23  9:42         ` Lee Jones
  0 siblings, 0 replies; 13+ messages in thread
From: Lee Jones @ 2021-03-23  9:42 UTC (permalink / raw)
  To: Daniel Thompson
  Cc: Konrad Dybcio, phone-devel, ~postmarketos/upstreaming,
	martin.botka, angelogioacchino.delregno, marijn.suijten,
	Jingoo Han, Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Tue, 23 Mar 2021, Daniel Thompson wrote:

> On Tue, Mar 23, 2021 at 08:39:35AM +0000, Lee Jones wrote:
> > On Mon, 22 Mar 2021, Daniel Thompson wrote:
> > 
> > > On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> > > > Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> > > > 
> > > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> > > 
> > > Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
> > 
> > Why are you Reviewing/Acking a patch that was applied on the 10th?
> 
> Simply an oversight. Looks like I forgot to remove it from my backlog
> when it was applied.

I wondered if I'd made a mistake.

No problem.  Thanks for the clarification.

> > > > ---
> > > >  drivers/video/backlight/qcom-wled.c | 1 +
> > > >  1 file changed, 1 insertion(+)
> > > > 
> > > > diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
> > > > index 3bc7800eb0a9..497b9035a908 100644
> > > > --- a/drivers/video/backlight/qcom-wled.c
> > > > +++ b/drivers/video/backlight/qcom-wled.c
> > > > @@ -1704,6 +1704,7 @@ static int wled_remove(struct platform_device *pdev)
> > > >  
> > > >  static const struct of_device_id wled_match_table[] = {
> > > >  	{ .compatible = "qcom,pm8941-wled", .data = (void *)3 },
> > > > +	{ .compatible = "qcom,pmi8994-wled", .data = (void *)4 },
> > > >  	{ .compatible = "qcom,pmi8998-wled", .data = (void *)4 },
> > > >  	{ .compatible = "qcom,pm660l-wled", .data = (void *)4 },
> > > >  	{ .compatible = "qcom,pm8150l-wled", .data = (void *)5 },
> > 

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-23  8:39     ` Lee Jones
  2021-03-23  9:35       ` Daniel Thompson
@ 2021-03-24  8:54       ` Geert Uytterhoeven
  2021-03-24  9:14         ` Lee Jones
  2021-05-27 16:09       ` Konrad Dybcio
  2 siblings, 1 reply; 13+ messages in thread
From: Geert Uytterhoeven @ 2021-03-24  8:54 UTC (permalink / raw)
  To: Lee Jones
  Cc: Daniel Thompson, Konrad Dybcio, phone-devel,
	~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Jingoo Han,
	Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, DRI Development, linux-leds,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux Kernel Mailing List, linux-arm-msm,
	Linux Fbdev development list

Hi Lee,

On Tue, Mar 23, 2021 at 9:40 AM Lee Jones <lee.jones@linaro.org> wrote:
> On Mon, 22 Mar 2021, Daniel Thompson wrote:
> > On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> > > Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> > >
> > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> >
> > Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
>
> Why are you Reviewing/Acking a patch that was applied on the 10th?

Only 12 days later?!?

It's not uncommon to receive acks for patches after they have been
applied upstream. But it is if the patch was applied 10 years and 9
months ago!
https://lore.kernel.org/linux-m68k/F5513AE92A5A1047AC2F91AEBB9202680288CBBA3983@E2K7-MS2.ds.strath.ac.uk/

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-24  8:54       ` Geert Uytterhoeven
@ 2021-03-24  9:14         ` Lee Jones
  0 siblings, 0 replies; 13+ messages in thread
From: Lee Jones @ 2021-03-24  9:14 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Daniel Thompson, Konrad Dybcio, phone-devel,
	~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Jingoo Han,
	Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, DRI Development, linux-leds,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Linux Kernel Mailing List, linux-arm-msm,
	Linux Fbdev development list

On Wed, 24 Mar 2021, Geert Uytterhoeven wrote:

> Hi Lee,
> 
> On Tue, Mar 23, 2021 at 9:40 AM Lee Jones <lee.jones@linaro.org> wrote:
> > On Mon, 22 Mar 2021, Daniel Thompson wrote:
> > > On Sun, Feb 28, 2021 at 01:41:05PM +0100, Konrad Dybcio wrote:
> > > > Add a compatible for PMI8994 WLED. It uses the V4 of WLED IP.
> > > >
> > > > Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
> > >
> > > Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
> >
> > Why are you Reviewing/Acking a patch that was applied on the 10th?
> 
> Only 12 days later?!?
> 
> It's not uncommon to receive acks for patches after they have been
> applied upstream. But it is if the patch was applied 10 years and 9
> months ago!
> https://lore.kernel.org/linux-m68k/F5513AE92A5A1047AC2F91AEBB9202680288CBBA3983@E2K7-MS2.ds.strath.ac.uk/

That truly is next level! :)

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-03-23  8:39     ` Lee Jones
  2021-03-23  9:35       ` Daniel Thompson
  2021-03-24  8:54       ` Geert Uytterhoeven
@ 2021-05-27 16:09       ` Konrad Dybcio
  2021-05-27 16:26         ` Lee Jones
  2 siblings, 1 reply; 13+ messages in thread
From: Konrad Dybcio @ 2021-05-27 16:09 UTC (permalink / raw)
  To: Lee Jones, Daniel Thompson
  Cc: phone-devel, ~postmarketos/upstreaming, martin.botka,
	angelogioacchino.delregno, marijn.suijten, Jingoo Han,
	Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

Hi,

> Why are you Reviewing/Acking a patch that was applied on the 10th?

Forgive me if it turns out I'm blind, but I can't see the patch being in either -next, backlight/for-next, or 5.13-rc3. Perhaps it was omitted after all?


Konrad


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 2/2] video: backlight: qcom-wled: Add PMI8994 compatible
  2021-05-27 16:09       ` Konrad Dybcio
@ 2021-05-27 16:26         ` Lee Jones
  0 siblings, 0 replies; 13+ messages in thread
From: Lee Jones @ 2021-05-27 16:26 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: Daniel Thompson, phone-devel, ~postmarketos/upstreaming,
	martin.botka, angelogioacchino.delregno, marijn.suijten,
	Jingoo Han, Pavel Machek, Dan Murphy, Rob Herring, Andy Gross,
	Bjorn Andersson, Kiran Gunda, dri-devel, linux-leds, devicetree,
	linux-kernel, linux-arm-msm, linux-fbdev

On Thu, 27 May 2021, Konrad Dybcio wrote:

> Hi,
> 
> > Why are you Reviewing/Acking a patch that was applied on the 10th?
> 
> Forgive me if it turns out I'm blind, but I can't see the patch
> being in either -next, backlight/for-next, or 5.13-rc3. Perhaps it
> was omitted after all?

Interesting.  It's not you, it's me!

No idea what happened exactly TBH, but it's applied again.

Should be in -next tomorrow.  Apologies for the delay.

-- 
Lee Jones [李琼斯]
Senior Technical Lead - Developer Services
Linaro.org │ Open source software for Arm SoCs
Follow Linaro: Facebook | Twitter | Blog

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2021-05-27 16:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-28 12:41 [PATCH 1/2] dt-bindings: leds: backlight: qcom-wled: Add PMI8994 compatible Konrad Dybcio
2021-02-28 12:41 ` [PATCH 2/2] video: " Konrad Dybcio
2021-03-22 16:18   ` Daniel Thompson
2021-03-23  8:39     ` Lee Jones
2021-03-23  9:35       ` Daniel Thompson
2021-03-23  9:42         ` Lee Jones
2021-03-24  8:54       ` Geert Uytterhoeven
2021-03-24  9:14         ` Lee Jones
2021-05-27 16:09       ` Konrad Dybcio
2021-05-27 16:26         ` Lee Jones
2021-03-08 17:23 ` [PATCH 1/2] dt-bindings: leds: " Rob Herring
2021-03-10  9:21 ` Lee Jones
2021-03-22 16:17 ` Daniel Thompson

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).