Hi, On Fri, Sep 26, 2014 at 01:24:52PM +0100, Darshana Padmadas wrote: > This patch adds the correct vendor-prefix listed in Documentation/devicetree/bindings/vendor-prefixes.txt > with the device name to compatible property. > > Signed-off-by: Darshana Padmadas <darshanapadmadas@xxxxxxxxx> > --- > arch/arm/boot/dts/tegra30-cardhu.dtsi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/boot/dts/tegra30-cardhu.dtsi b/arch/arm/boot/dts/tegra30-cardhu.dtsi > index 2063795..491fed6 100644 > --- a/arch/arm/boot/dts/tegra30-cardhu.dtsi > +++ b/arch/arm/boot/dts/tegra30-cardhu.dtsi > @@ -187,7 +187,7 @@ > > /* ALS and Proximity sensor */ > isl29028@44 { > - compatible = "isil,isl29028"; > + compatible = "isl,isl29028", "isil,isl29028"; Please either drop the old string, or don't add the new string. For compatibility with old DTBs, the kernel must continue to support the old string. So the old string will alone will work -- it's not necessary to add the new one to DTs just because the kernel now supports it. However, this DTB need not work with older kernels, so you could simply replace the string with the new one if your aim is to remove instances of "isil" to ensure consistency going forwards. If so, please mention that in the commit message. Additionally, please Cc the Tegra maintainers if you touch their DTs, along with arm-soc. They both need to have some visibility of this and might not be subscribed to the devicetree mailing list. You should be able to find a list of people to Cc by using get_maintainer.pl. Thanks, Mark. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html