From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lars Poeschel Subject: Re: [PATCH v4] gpio: mcp23s08: convert driver to DT Date: Fri, 5 Apr 2013 07:51:01 +0200 Message-ID: <201304050751.02172.larsi@wh2.tu-dresden.de> References: <1365069722-15408-1-git-send-email-larsi@wh2.tu-dresden.de> Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-doc-owner@vger.kernel.org To: Linus Walleij Cc: Lars Poeschel , Grant Likely , Rob Herring , Rob Landley , "devicetree-discuss@lists.ozlabs.org" , "linux-doc@vger.kernel.org" , "linux-kernel@vger.kernel.org" , spi mailing list , Peter Korsgaard , Mark Brown List-Id: devicetree@vger.kernel.org On Thursday 04 April 2013 15:44:08 Linus Walleij wrote: > On Thu, Apr 4, 2013 at 12:02 PM, Lars Poeschel wrote: > > From: Lars Poeschel > > > > This converts the mcp23s08 driver to be able to be used with device > > tree. > > There is a "spi-present-mask" device tree property, that allows to > > use multiple of this spi chips on the same chipselect. > > > > Signed-off-by: Lars Poeschel > > --- > > v4: > > - removed the ability to specify the pullup from device tree > > - updated binding doc > > (...) > > > @@ -668,6 +742,7 @@ static struct spi_driver mcp23s08_driver = { > > > > .driver = { > > > > .name = "mcp23s08", > > .owner = THIS_MODULE, > > > > + .of_match_table = of_match_ptr(mcp23s08_spi_of_match), > > Will this compile if CONFIG_OF is not enabled? Yes, of_match_ptr(blah) after preprocessing gets NULL then. Regards, Lars