All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: Baoyou Xie <baoyou.xie@linaro.org>
Cc: lee.jones@linaro.org, linux-kernel@vger.kernel.org,
	xie.baoyou@zte.com.cn
Subject: Re: [PATCH 1/2] mfd: ab8500-debugfs: add function declaration
Date: Sat, 24 Sep 2016 10:30:39 +0200	[thread overview]
Message-ID: <5669860.khWdu6PIDc@wuerfel> (raw)
In-Reply-To: <1474695290-21619-1-git-send-email-baoyou.xie@linaro.org>

On Saturday, September 24, 2016 1:34:50 PM CEST Baoyou Xie wrote:
> We get 1 warning when building kernel with W=1:
> drivers/mfd/ab8500-debugfs.c:1587:28: warning: no previous prototype for 'suspend_test_wake_cause_interrupt_is_mine' [-Wmissing-prototypes]
> 
> In fact, this function need be declared in a header files.
> 
> So this patch adds function declaration in
> include/linux/mfd/abx500/ab8500.h.
> 
> Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
> ---
>  include/linux/mfd/abx500/ab8500.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/linux/mfd/abx500/ab8500.h b/include/linux/mfd/abx500/ab8500.h
> index 9475fee..a496120 100644
> --- a/include/linux/mfd/abx500/ab8500.h
> +++ b/include/linux/mfd/abx500/ab8500.h
> @@ -508,6 +508,7 @@ void ab8500_override_turn_on_stat(u8 mask, u8 set);
>  extern int prcmu_abb_read(u8 slave, u8 reg, u8 *value, u8 size);
>  void ab8500_dump_all_banks(struct device *dev);
>  void ab8500_debug_register_interrupt(int line);
> +bool suspend_test_wake_cause_interrupt_is_mine(u32 my_int);
>  #else
>  static inline void ab8500_dump_all_banks(struct device *dev) {}
>  static inline void ab8500_debug_register_interrupt(int line) {}
> 

This can't be right for two reasons:

- the suspend_test_wake_cause_interrupt_is_mine function again
  is only used in the file it is defined in

- the name of the function does not have a prefix with the name of
  the driver

I think the right fix is to make the function 'static inline'
and add a comment about the intent.

	Arnd

  reply	other threads:[~2016-09-24  8:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-24  5:34 [PATCH 1/2] mfd: ab8500-debugfs: add function declaration Baoyou Xie
2016-09-24  8:30 ` Arnd Bergmann [this message]
     [not found]   ` <CA+DQWkxQL0-3UFC7RTuBc2NQ1vwMScj9GLRwD62_yNg3pt1yNw@mail.gmail.com>
2016-09-25 23:29     ` Arnd Bergmann
2016-09-27 18:49 ` Lee Jones

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=5669860.khWdu6PIDc@wuerfel \
    --to=arnd@arndb.de \
    --cc=baoyou.xie@linaro.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=xie.baoyou@zte.com.cn \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.