From mboxrd@z Thu Jan 1 00:00:00 1970 From: robherring2@gmail.com (Rob Herring) Date: Mon, 13 Feb 2012 08:33:02 -0600 Subject: [PATCH 1/1] gpio: drop CONFIG_OF_GPIO in the definition of the struct gpio_chip In-Reply-To: <20120213141229.GD3378@game.jcrosoft.org> References: <1329125002-21134-1-git-send-email-plagnioj@jcrosoft.com> <4F391781.2020203@gmail.com> <20120213141229.GD3378@game.jcrosoft.org> Message-ID: <4F391F1E.4020808@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 02/13/2012 08:12 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 08:00 Mon 13 Feb , Rob Herring wrote: >> On 02/13/2012 03:23 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: >>> this will allow to avoid the ifdef CONFIG_OF_GPIO in gpio drivers >>> >> >> So would always enabling CONFIG_OF on at91 and then only 1 sub-arch is >> paying the price for additional space. Then we would only have ifdefs in >> the truly cross-platform gpio drivers. > we talk about 12bytes and here it's force to put a ifdef in the gpio drivers > in platform_device we don't do so. So why should be do it here?? But you are affecting everyone. I'm not saying we shouldn't do this. I'm just highlighting the reason this is a problem and gpio is just one instance. I think sub-arches should either always select OF or not. Trying to do both is just going to be a pain to maintain. > Drop the ifdef will ensure evenif we compile the code without OF_GPIO that all > the work can compile Yes, I understand the concept. To look at it another way, this has been here for a long time without issue because CONFIG_OF was designed to be selected at arch level. > we recently introduce IS_ENABLED & co to drop the maximum of ifdef > here it's the same idea > I have no idea what you are referring to. Rob > Best Regards, > J. >> >> Rob >> >>> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD >>> Cc: Arnd Bergmann >>> Cc: Nicolas Ferre >>> --- >>> include/asm-generic/gpio.h | 2 -- >>> 1 files changed, 0 insertions(+), 2 deletions(-) >>> >>> diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h >>> index 1ff4e22..c08b758 100644 >>> --- a/include/asm-generic/gpio.h >>> +++ b/include/asm-generic/gpio.h >>> @@ -122,7 +122,6 @@ struct gpio_chip { >>> unsigned can_sleep:1; >>> unsigned exported:1; >>> >>> -#if defined(CONFIG_OF_GPIO) >>> /* >>> * If CONFIG_OF is enabled, then all GPIO controllers described in the >>> * device tree automatically may have an OF translation >>> @@ -131,7 +130,6 @@ struct gpio_chip { >>> int of_gpio_n_cells; >>> int (*of_xlate)(struct gpio_chip *gc, >>> const struct of_phandle_args *gpiospec, u32 *flags); >>> -#endif >>> }; >>> >>> extern const char *gpiochip_is_requested(struct gpio_chip *chip,