Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752840AbaFGHaT (ORCPT ); Sat, 7 Jun 2014 03:30:19 -0400 Received: from mail-wi0-f170.google.com ([209.85.212.170]:54537 "EHLO mail-wi0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752753AbaFGHaQ (ORCPT ); Sat, 7 Jun 2014 03:30:16 -0400 From: Grant Likely Subject: Re: [PATCH 7/9] of/device: Allow I2C devices to OF match without supplying an OF node To: Lee Jones , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: wsa@the-dreams.de, linus.walleij@linaro.org, linux-i2c@vger.kernel.org, devicetree@vger.kernel.org, Lee Jones In-Reply-To: <1402069952-28022-8-git-send-email-lee.jones@linaro.org> References: <1402069952-28022-1-git-send-email-lee.jones@linaro.org> <1402069952-28022-8-git-send-email-lee.jones@linaro.org> Date: Sat, 07 Jun 2014 00:28:18 +0100 Message-Id: <20140606232818.8D870C42604@trevor.secretlab.ca> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 6 Jun 2014 16:52:30 +0100, Lee Jones wrote: > The I2C framework supplies a means for devices to be registered without > the requirement for platform_data, DT or ACPI. The current solution is > that every single I2C device in the kernel is forced to supply a > normally empty/sparse I2C ID table so the I2C subsystem can match to. > In an effort to rid the kernel of these tables we need to provide some > temporary work arounds until we can straighten out the blocking factors. > > This change is meant to be temporary and will be stripped out once > we've converted all I2C device drivers from of_match_device() over > to the new I2C generic i2c_of_match_device(). This change imposes the i2c workaround onto every single caller of i2c_of_match_device(), regardless of subsystem, and regardless of the desired behaviour. It also prevents an i2c driver from getting the correct behavour when it wants it. So, no, I'm not okay with hooking into the core code to work around the subsystem problem. I2C drivers need to call the i2c specific version directly. I know that adds a line of change to the driver patches, but I think it is necessary. g. > > Signed-off-by: Lee Jones > --- > drivers/of/device.c | 19 ++++++++++++++++++- > 1 file changed, 18 insertions(+), 1 deletion(-) > > diff --git a/drivers/of/device.c b/drivers/of/device.c > index dafb973..3b1c8f9 100644 > --- a/drivers/of/device.c > +++ b/drivers/of/device.c > @@ -1,6 +1,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -21,9 +22,25 @@ > const struct of_device_id *of_match_device(const struct of_device_id *matches, > const struct device *dev) > { > + const struct of_device_id *match; > + > if ((!matches) || (!dev->of_node)) > return NULL; > - return of_match_node(matches, dev->of_node); > + > + match = of_match_node(matches, dev->of_node); > + if (match) > + return match; > + > + /* > + * Low impact workaround, until we can convert all I2C compatible > + * strings over to the correctly specified , format. > + */ > + match = i2c_of_match_device_strip_vendor(matches, (struct device *)dev); > + if (match) > + dev_warn(dev, > + "WARNING: Vendor ID missing from compatible string\n"); > + > + return match; > } > EXPORT_SYMBOL(of_match_device); > > -- > 1.8.3.2 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/