devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Anton Vorontsov <cbouatmailru-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Steven King <sfking-xS0NTnu2YfYAvxtiuMwx3w@public.gmane.org>
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org>
Subject: Re: [PATCH] of/gpio: add declaration of struct gpio_chip to silence warning if CONFIG_OF_GPIO=n && CONFIG_GPIOLIB=n
Date: Mon, 21 May 2012 17:54:03 -0700	[thread overview]
Message-ID: <20120522005400.GA15267@lizard> (raw)
In-Reply-To: <201205210950.59719.sfking-xS0NTnu2YfYAvxtiuMwx3w@public.gmane.org>

On Mon, May 21, 2012 at 09:50:59AM -0700, Steven King wrote:
[...]
> The arch is m68knommu (Coldfire).   Currently it has GENERIC_GPIO and 
> ARCH_REQUIRES_GPIOLIB but thats overkill for small, resource constrained 
> systems such as most Coldfire v2 and v3 systems (often 16 megs or less of 
> ram) that don't have any off-chip GPIO, so I was changing it to 
> ARCH_WANTS_OPTIONAL_GPIOLIB.  Which, with the appropriate patches to the 
> Coldfire GPIO code, works fine, one can select GPIOLIB=n and get the smaller 
> footprint for small systems or GPIOLIB=y and get the full implementation for 
> targets with off-chip GPIO -- with the exception of 
> drivers/net/ethernet/freescale/fec.c which gives the warning.

OK, understood. But still, adding the forward-declaration to linux/gpio.h
is preffered, i.e. something along these lines:

diff --git a/include/linux/gpio.h b/include/linux/gpio.h
index 6155ecf..968607e 100644
--- a/include/linux/gpio.h
+++ b/include/linux/gpio.h
@@ -32,6 +32,8 @@ struct gpio {
 	const char	*label;
 };
 
+struct gpio_chip;
+
 #ifdef CONFIG_GENERIC_GPIO
 #include <asm/gpio.h>
 
@@ -43,7 +45,6 @@ struct gpio {
 #include <linux/bug.h>
 
 struct device;
-struct gpio_chip;
 
 static inline bool gpio_is_valid(int number)
 {

      parent reply	other threads:[~2012-05-22  0:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <201205201639.21378.sfking@fdwdc.com>
     [not found] ` <201205201639.21378.sfking-xS0NTnu2YfYAvxtiuMwx3w@public.gmane.org>
2012-05-21 10:32   ` [PATCH] of/gpio: add declaration of struct gpio_chip to silence warning if CONFIG_OF_GPIO=n && CONFIG_GPIOLIB=n Anton Vorontsov
     [not found]     ` <201205210950.59719.sfking@fdwdc.com>
     [not found]       ` <201205210950.59719.sfking-xS0NTnu2YfYAvxtiuMwx3w@public.gmane.org>
2012-05-22  0:54         ` Anton Vorontsov [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120522005400.GA15267@lizard \
    --to=cbouatmailru-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
    --cc=rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org \
    --cc=sfking-xS0NTnu2YfYAvxtiuMwx3w@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).