* [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip @ 2016-03-16 16:52 Ben Hutchings [not found] ` <1458147150.20441.2.camel-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Ben Hutchings @ 2016-03-16 16:52 UTC (permalink / raw) To: linux-omap-u79uwXL29TY76Z2rM5mHXA Cc: CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA The binding definition for the PCF857x GPIO expanders doesn't mention a "ti,pcf8575" compatible string. This is apparently because TI is only a second source - there is no functional difference between PCF8575 chips manufactured by TI and NXP, and the same board might be populated with either depending on availability. This is not a problem in practice because the I2C core uses of_modalias_node() before matching drivers and this strips the manufacturer name. Signed-off-by: Ben Hutchings <ben.hutchings-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> --- v2: Correct the claim that this is a practical problem. arch/arm/boot/dts/dra7-evm.dts | 2 +- arch/arm/boot/dts/dra72-evm.dts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts index cfc24e52244e..3907c9d2c12e 100644 --- a/arch/arm/boot/dts/dra7-evm.dts +++ b/arch/arm/boot/dts/dra7-evm.dts @@ -539,7 +539,7 @@ }; pcf_gpio_21: gpio@21 { - compatible = "ti,pcf8575"; + compatible = "nxp,pcf8575"; reg = <0x21>; lines-initial-states = <0x1408>; gpio-controller; diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts index 00b12002c07c..7ec42bda3afb 100644 --- a/arch/arm/boot/dts/dra72-evm.dts +++ b/arch/arm/boot/dts/dra72-evm.dts @@ -422,7 +422,7 @@ }; pcf_gpio_21: gpio@21 { - compatible = "ti,pcf8575"; + compatible = "nxp,pcf8575"; reg = <0x21>; lines-initial-states = <0x1408>; gpio-controller; -- Ben Hutchings Software Developer, Codethink Ltd. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1458147150.20441.2.camel-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <1458147150.20441.2.camel-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> @ 2016-03-16 22:31 ` Nishanth Menon [not found] ` <56E9DED9.6020909-l0cyMroinI0@public.gmane.org> 2016-03-18 8:47 ` Roger Quadros 1 sibling, 1 reply; 9+ messages in thread From: Nishanth Menon @ 2016-03-16 22:31 UTC (permalink / raw) To: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA Cc: CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA, Roger Quadros, Sebastian Andrzej Siewior On 03/16/2016 11:52 AM, Ben Hutchings wrote: > The binding definition for the PCF857x GPIO expanders doesn't mention > a "ti,pcf8575" compatible string. This is apparently because TI is > only a second source - there is no functional difference between > PCF8575 chips manufactured by TI and NXP, and the same board might be > populated with either depending on availability. > > This is not a problem in practice because the I2C core uses > of_modalias_node() before matching drivers and this strips the > manufacturer name. > Yeah - thanks for catching this.. was planning on fixing this, but anyways.. f56de327b4c4 ARM: dts: dra72-evm: Add extcon nodes for USB 87517d26d888 ARM: dts: dra7-evm: Add extcon nodes for USB Are the patches that introduce the "ti," binding... Roger: since this is introduced by your patches... Ccying you as well. weird since checkpatch does not complain.. > Signed-off-by: Ben Hutchings <ben.hutchings-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> > --- > v2: Correct the claim that this is a practical problem. > > arch/arm/boot/dts/dra7-evm.dts | 2 +- > arch/arm/boot/dts/dra72-evm.dts | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts > index cfc24e52244e..3907c9d2c12e 100644 > --- a/arch/arm/boot/dts/dra7-evm.dts > +++ b/arch/arm/boot/dts/dra7-evm.dts > @@ -539,7 +539,7 @@ > }; > > pcf_gpio_21: gpio@21 { > - compatible = "ti,pcf8575"; > + compatible = "nxp,pcf8575"; > reg = <0x21>; > lines-initial-states = <0x1408>; > gpio-controller; > diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts > index 00b12002c07c..7ec42bda3afb 100644 > --- a/arch/arm/boot/dts/dra72-evm.dts > +++ b/arch/arm/boot/dts/dra72-evm.dts > @@ -422,7 +422,7 @@ > }; > > pcf_gpio_21: gpio@21 { > - compatible = "ti,pcf8575"; > + compatible = "nxp,pcf8575"; > reg = <0x21>; > lines-initial-states = <0x1408>; > gpio-controller; > > > While at it, do you want to fix up (+Seb): a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which also seems to refer to ti,pcf in example (introduced by df2634f43f51 x86: dtb: Add a device tree for CE4100 ) b) arch/x86/platform/ce4100/falconfalls.dts as well? -- Regards, Nishanth Menon -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <56E9DED9.6020909-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <56E9DED9.6020909-l0cyMroinI0@public.gmane.org> @ 2016-04-12 21:04 ` Tony Lindgren [not found] ` <20160412210438.GA5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Tony Lindgren @ 2016-04-12 21:04 UTC (permalink / raw) To: Nishanth Menon Cc: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA, Roger Quadros, Sebastian Andrzej Siewior * Nishanth Menon <nm-l0cyMroinI0@public.gmane.org> [160316 15:34]: > On 03/16/2016 11:52 AM, Ben Hutchings wrote: > > The binding definition for the PCF857x GPIO expanders doesn't mention > > a "ti,pcf8575" compatible string. This is apparently because TI is > > only a second source - there is no functional difference between > > PCF8575 chips manufactured by TI and NXP, and the same board might be > > populated with either depending on availability. > > > > This is not a problem in practice because the I2C core uses > > of_modalias_node() before matching drivers and this strips the > > manufacturer name. > > > > Yeah - thanks for catching this.. was planning on fixing this, but anyways.. > f56de327b4c4 ARM: dts: dra72-evm: Add extcon nodes for USB > 87517d26d888 ARM: dts: dra7-evm: Add extcon nodes for USB > > Are the patches that introduce the "ti," binding... Roger: since this is > introduced by your patches... Ccying you as well. weird since checkpatch > does not complain.. > > > Signed-off-by: Ben Hutchings <ben.hutchings-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> > > --- > > v2: Correct the claim that this is a practical problem. > > > > arch/arm/boot/dts/dra7-evm.dts | 2 +- > > arch/arm/boot/dts/dra72-evm.dts | 2 +- > > 2 files changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts > > index cfc24e52244e..3907c9d2c12e 100644 > > --- a/arch/arm/boot/dts/dra7-evm.dts > > +++ b/arch/arm/boot/dts/dra7-evm.dts > > @@ -539,7 +539,7 @@ > > }; > > > > pcf_gpio_21: gpio@21 { > > - compatible = "ti,pcf8575"; > > + compatible = "nxp,pcf8575"; > > reg = <0x21>; > > lines-initial-states = <0x1408>; > > gpio-controller; > > diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts > > index 00b12002c07c..7ec42bda3afb 100644 > > --- a/arch/arm/boot/dts/dra72-evm.dts > > +++ b/arch/arm/boot/dts/dra72-evm.dts > > @@ -422,7 +422,7 @@ > > }; > > > > pcf_gpio_21: gpio@21 { > > - compatible = "ti,pcf8575"; > > + compatible = "nxp,pcf8575"; > > reg = <0x21>; > > lines-initial-states = <0x1408>; > > gpio-controller; > > > > > > > > > While at it, do you want to fix up (+Seb): > a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which > also seems to refer to ti,pcf in example (introduced by df2634f43f51 > x86: dtb: Add a device tree for CE4100 ) > b) arch/x86/platform/ce4100/falconfalls.dts as well? Applying this one with Roger's ack, seems like those should be additional patches. Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20160412210438.GA5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <20160412210438.GA5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2016-04-13 6:59 ` Sebastian Andrzej Siewior [not found] ` <570DEE5B.1010001-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Sebastian Andrzej Siewior @ 2016-04-13 6:59 UTC (permalink / raw) To: Tony Lindgren, Nishanth Menon Cc: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA, Roger Quadros On 04/12/2016 11:04 PM, Tony Lindgren wrote: >> While at it, do you want to fix up (+Seb): >> a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which >> also seems to refer to ti,pcf in example (introduced by df2634f43f51 >> x86: dtb: Add a device tree for CE4100 ) >> b) arch/x86/platform/ce4100/falconfalls.dts as well? > > Applying this one with Roger's ack, seems like those should be > additional patches. Okay. I looked it up on the board and it says NXP PCF8575 and not TI. TI's was probably the first hit while I was looking for it (I think CE4100 manual mentioned just PCF8575). But if it would have a TI branding on it I would keep the TI prefix in front and add the NXP prefix. As of today we might not know a functional difference between those two but this does not mean we might find one in the future. That said, are you people sure that the DRA7 has a TI or a NXP branding on it? > > Tony > Sebastian -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <570DEE5B.1010001-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <570DEE5B.1010001-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> @ 2016-04-13 7:11 ` Roger Quadros [not found] ` <570DF110.3070805-l0cyMroinI0@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Roger Quadros @ 2016-04-13 7:11 UTC (permalink / raw) To: Sebastian Andrzej Siewior, Tony Lindgren, Nishanth Menon Cc: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA On 13/04/16 09:59, Sebastian Andrzej Siewior wrote: > On 04/12/2016 11:04 PM, Tony Lindgren wrote: >>> While at it, do you want to fix up (+Seb): >>> a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which >>> also seems to refer to ti,pcf in example (introduced by df2634f43f51 >>> x86: dtb: Add a device tree for CE4100 ) >>> b) arch/x86/platform/ce4100/falconfalls.dts as well? >> >> Applying this one with Roger's ack, seems like those should be >> additional patches. > > Okay. I looked it up on the board and it says NXP PCF8575 and not TI. > TI's was probably the first hit while I was looking for it (I think > CE4100 manual mentioned just PCF8575). > > But if it would have a TI branding on it I would keep the TI prefix in > front and add the NXP prefix. As of today we might not know a > functional difference between those two but this does not mean we might > find one in the future. > That said, are you people sure that the DRA7 has a TI or a NXP branding > on it? Board has a Texas Instruments part: PCF8575PWR TSSOP24. http://www.ti.com/product/PCF8575 -- cheers, -roger -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <570DF110.3070805-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <570DF110.3070805-l0cyMroinI0@public.gmane.org> @ 2016-04-13 7:16 ` Sebastian Andrzej Siewior [not found] ` <570DF235.6040705-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Sebastian Andrzej Siewior @ 2016-04-13 7:16 UTC (permalink / raw) To: Roger Quadros, Tony Lindgren, Nishanth Menon Cc: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA On 04/13/2016 09:11 AM, Roger Quadros wrote: > On 13/04/16 09:59, Sebastian Andrzej Siewior wrote: >> On 04/12/2016 11:04 PM, Tony Lindgren wrote: >>>> While at it, do you want to fix up (+Seb): >>>> a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which >>>> also seems to refer to ti,pcf in example (introduced by df2634f43f51 >>>> x86: dtb: Add a device tree for CE4100 ) >>>> b) arch/x86/platform/ce4100/falconfalls.dts as well? >>> >>> Applying this one with Roger's ack, seems like those should be >>> additional patches. >> >> Okay. I looked it up on the board and it says NXP PCF8575 and not TI. >> TI's was probably the first hit while I was looking for it (I think >> CE4100 manual mentioned just PCF8575). >> >> But if it would have a TI branding on it I would keep the TI prefix in >> front and add the NXP prefix. As of today we might not know a >> functional difference between those two but this does not mean we might >> find one in the future. >> That said, are you people sure that the DRA7 has a TI or a NXP branding >> on it? > > Board has a Texas Instruments part: PCF8575PWR TSSOP24. > http://www.ti.com/product/PCF8575 So this sounds like compatible = "ti,pcf8575", "nxp,pcf8575"; then. > > -- > cheers, > -roger Sebastian -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <570DF235.6040705-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <570DF235.6040705-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> @ 2016-04-13 7:21 ` Roger Quadros [not found] ` <570DF38C.8000600-l0cyMroinI0@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Roger Quadros @ 2016-04-13 7:21 UTC (permalink / raw) To: Sebastian Andrzej Siewior, Tony Lindgren, Nishanth Menon Cc: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA On 13/04/16 10:16, Sebastian Andrzej Siewior wrote: > On 04/13/2016 09:11 AM, Roger Quadros wrote: >> On 13/04/16 09:59, Sebastian Andrzej Siewior wrote: >>> On 04/12/2016 11:04 PM, Tony Lindgren wrote: >>>>> While at it, do you want to fix up (+Seb): >>>>> a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which >>>>> also seems to refer to ti,pcf in example (introduced by df2634f43f51 >>>>> x86: dtb: Add a device tree for CE4100 ) >>>>> b) arch/x86/platform/ce4100/falconfalls.dts as well? >>>> >>>> Applying this one with Roger's ack, seems like those should be >>>> additional patches. >>> >>> Okay. I looked it up on the board and it says NXP PCF8575 and not TI. >>> TI's was probably the first hit while I was looking for it (I think >>> CE4100 manual mentioned just PCF8575). >>> >>> But if it would have a TI branding on it I would keep the TI prefix in >>> front and add the NXP prefix. As of today we might not know a >>> functional difference between those two but this does not mean we might >>> find one in the future. >>> That said, are you people sure that the DRA7 has a TI or a NXP branding >>> on it? >> >> Board has a Texas Instruments part: PCF8575PWR TSSOP24. >> http://www.ti.com/product/PCF8575 > > So this sounds like > > compatible = "ti,pcf8575", "nxp,pcf8575"; > > then. Agree with you. -- cheers, -roger -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <570DF38C.8000600-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <570DF38C.8000600-l0cyMroinI0@public.gmane.org> @ 2016-04-13 15:17 ` Tony Lindgren 0 siblings, 0 replies; 9+ messages in thread From: Tony Lindgren @ 2016-04-13 15:17 UTC (permalink / raw) To: Roger Quadros Cc: Sebastian Andrzej Siewior, Nishanth Menon, Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA, CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA * Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org> [160413 00:23]: > On 13/04/16 10:16, Sebastian Andrzej Siewior wrote: > > On 04/13/2016 09:11 AM, Roger Quadros wrote: > >> On 13/04/16 09:59, Sebastian Andrzej Siewior wrote: > >>> On 04/12/2016 11:04 PM, Tony Lindgren wrote: > >>>>> While at it, do you want to fix up (+Seb): > >>>>> a) Documentation/devicetree/bindings/i2c/i2c-pxa-pci-ce4100.txt which > >>>>> also seems to refer to ti,pcf in example (introduced by df2634f43f51 > >>>>> x86: dtb: Add a device tree for CE4100 ) > >>>>> b) arch/x86/platform/ce4100/falconfalls.dts as well? > >>>> > >>>> Applying this one with Roger's ack, seems like those should be > >>>> additional patches. > >>> > >>> Okay. I looked it up on the board and it says NXP PCF8575 and not TI. > >>> TI's was probably the first hit while I was looking for it (I think > >>> CE4100 manual mentioned just PCF8575). > >>> > >>> But if it would have a TI branding on it I would keep the TI prefix in > >>> front and add the NXP prefix. As of today we might not know a > >>> functional difference between those two but this does not mean we might > >>> find one in the future. > >>> That said, are you people sure that the DRA7 has a TI or a NXP branding > >>> on it? > >> > >> Board has a Texas Instruments part: PCF8575PWR TSSOP24. > >> http://www.ti.com/product/PCF8575 > > > > So this sounds like > > > > compatible = "ti,pcf8575", "nxp,pcf8575"; > > > > then. > > Agree with you. Can you please do an additional patch against omap-for-v4.7/dt for this one please? And also update the related binding documentation. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip [not found] ` <1458147150.20441.2.camel-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> 2016-03-16 22:31 ` Nishanth Menon @ 2016-03-18 8:47 ` Roger Quadros 1 sibling, 0 replies; 9+ messages in thread From: Roger Quadros @ 2016-03-18 8:47 UTC (permalink / raw) To: Ben Hutchings, linux-omap-u79uwXL29TY76Z2rM5mHXA Cc: CT kernel, Grygorii Strashko, devicetree-u79uwXL29TY76Z2rM5mHXA, Nishanth Menon On 16/03/16 18:52, Ben Hutchings wrote: > The binding definition for the PCF857x GPIO expanders doesn't mention > a "ti,pcf8575" compatible string. This is apparently because TI is > only a second source - there is no functional difference between > PCF8575 chips manufactured by TI and NXP, and the same board might be > populated with either depending on availability. > > This is not a problem in practice because the I2C core uses > of_modalias_node() before matching drivers and this strips the > manufacturer name. > > Signed-off-by: Ben Hutchings <ben.hutchings-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> Acked-by: Roger Quadros <rogerq-l0cyMroinI0@public.gmane.org> cheers, -roger > --- > v2: Correct the claim that this is a practical problem. > > arch/arm/boot/dts/dra7-evm.dts | 2 +- > arch/arm/boot/dts/dra72-evm.dts | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts > index cfc24e52244e..3907c9d2c12e 100644 > --- a/arch/arm/boot/dts/dra7-evm.dts > +++ b/arch/arm/boot/dts/dra7-evm.dts > @@ -539,7 +539,7 @@ > }; > > pcf_gpio_21: gpio@21 { > - compatible = "ti,pcf8575"; > + compatible = "nxp,pcf8575"; > reg = <0x21>; > lines-initial-states = <0x1408>; > gpio-controller; > diff --git a/arch/arm/boot/dts/dra72-evm.dts b/arch/arm/boot/dts/dra72-evm.dts > index 00b12002c07c..7ec42bda3afb 100644 > --- a/arch/arm/boot/dts/dra72-evm.dts > +++ b/arch/arm/boot/dts/dra72-evm.dts > @@ -422,7 +422,7 @@ > }; > > pcf_gpio_21: gpio@21 { > - compatible = "ti,pcf8575"; > + compatible = "nxp,pcf8575"; > reg = <0x21>; > lines-initial-states = <0x1408>; > gpio-controller; > > > -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-04-13 15:17 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-03-16 16:52 [PATCH v2] ARM: dts: dra7xx: Fix compatible string for PCF8575 chip Ben Hutchings [not found] ` <1458147150.20441.2.camel-4yDnlxn2s6sWdaTGBSpHTA@public.gmane.org> 2016-03-16 22:31 ` Nishanth Menon [not found] ` <56E9DED9.6020909-l0cyMroinI0@public.gmane.org> 2016-04-12 21:04 ` Tony Lindgren [not found] ` <20160412210438.GA5995-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2016-04-13 6:59 ` Sebastian Andrzej Siewior [not found] ` <570DEE5B.1010001-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> 2016-04-13 7:11 ` Roger Quadros [not found] ` <570DF110.3070805-l0cyMroinI0@public.gmane.org> 2016-04-13 7:16 ` Sebastian Andrzej Siewior [not found] ` <570DF235.6040705-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org> 2016-04-13 7:21 ` Roger Quadros [not found] ` <570DF38C.8000600-l0cyMroinI0@public.gmane.org> 2016-04-13 15:17 ` Tony Lindgren 2016-03-18 8:47 ` Roger Quadros
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).