stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c)
@ 2017-01-18  5:22 Guenter Roeck
  2017-01-18  7:03 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2017-01-18  5:22 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: stable, Niklas Söderlund

drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5191:38: error: array type has incomplete element type ‘struct sh_pfc_bias_info’
  static const struct sh_pfc_bias_info bias_info[] = {
                                       ^
drivers/pinctrl/sh-pfc/pfc-r8a7795.c: In function ‘r8a7795_pinmux_get_bias’:
drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5362:9: error: implicit declaration of function ‘sh_pfc_pin_to_bias_info’ [-Werror=implicit-function-declaration]
   info = sh_pfc_pin_to_bias_info(bias_info, ARRAY_SIZE(bias_info), pin);

This affects arm64 builds (defconfig, allmodconfig).

Guess something is missing in commit 30c49bf7c504 ("pinctrl: sh-pfc: r8a7795:
Use lookup function for bias data"). Copying the author.

Guenter

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c)
  2017-01-18  5:22 Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c) Guenter Roeck
@ 2017-01-18  7:03 ` Greg Kroah-Hartman
  2017-01-18  7:04   ` Greg Kroah-Hartman
  2017-01-18  7:36   ` Niklas Söderlund
  0 siblings, 2 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-01-18  7:03 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: stable, Niklas Söderlund

On Tue, Jan 17, 2017 at 09:22:38PM -0800, Guenter Roeck wrote:
> drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5191:38: error: array type has incomplete element type ‘struct sh_pfc_bias_info’
>  static const struct sh_pfc_bias_info bias_info[] = {
>                                       ^
> drivers/pinctrl/sh-pfc/pfc-r8a7795.c: In function ‘r8a7795_pinmux_get_bias’:
> drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5362:9: error: implicit declaration of function ‘sh_pfc_pin_to_bias_info’ [-Werror=implicit-function-declaration]
>   info = sh_pfc_pin_to_bias_info(bias_info, ARRAY_SIZE(bias_info), pin);
> 
> This affects arm64 builds (defconfig, allmodconfig).
> 
> Guess something is missing in commit 30c49bf7c504 ("pinctrl: sh-pfc: r8a7795:
> Use lookup function for bias data"). Copying the author.

Looks like I need to add c314c9f15aa5 ("pinctrl: sh-pfc: Add helper to
handle bias lookup table") to handle this.

Odd that kbuild didn't find this issue, your build system covers more
than it does :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c)
  2017-01-18  7:03 ` Greg Kroah-Hartman
@ 2017-01-18  7:04   ` Greg Kroah-Hartman
  2017-01-18  7:36   ` Niklas Söderlund
  1 sibling, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-01-18  7:04 UTC (permalink / raw)
  To: Guenter Roeck; +Cc: stable, Niklas Söderlund

On Wed, Jan 18, 2017 at 08:03:48AM +0100, Greg Kroah-Hartman wrote:
> On Tue, Jan 17, 2017 at 09:22:38PM -0800, Guenter Roeck wrote:
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5191:38: error: array type has incomplete element type ‘struct sh_pfc_bias_info’
> >  static const struct sh_pfc_bias_info bias_info[] = {
> >                                       ^
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c: In function ‘r8a7795_pinmux_get_bias’:
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5362:9: error: implicit declaration of function ‘sh_pfc_pin_to_bias_info’ [-Werror=implicit-function-declaration]
> >   info = sh_pfc_pin_to_bias_info(bias_info, ARRAY_SIZE(bias_info), pin);
> > 
> > This affects arm64 builds (defconfig, allmodconfig).
> > 
> > Guess something is missing in commit 30c49bf7c504 ("pinctrl: sh-pfc: r8a7795:
> > Use lookup function for bias data"). Copying the author.
> 
> Looks like I need to add c314c9f15aa5 ("pinctrl: sh-pfc: Add helper to
> handle bias lookup table") to handle this.
> 
> Odd that kbuild didn't find this issue, your build system covers more
> than it does :)

I take it back, I now see the kbuild failure message as well.

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c)
  2017-01-18  7:03 ` Greg Kroah-Hartman
  2017-01-18  7:04   ` Greg Kroah-Hartman
@ 2017-01-18  7:36   ` Niklas Söderlund
  2017-01-18  7:47     ` Greg Kroah-Hartman
  1 sibling, 1 reply; 5+ messages in thread
From: Niklas Söderlund @ 2017-01-18  7:36 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Guenter Roeck, stable

Hi Guenter and Greg,

On 2017-01-18 08:03:48 +0100, Greg Kroah-Hartman wrote:
> On Tue, Jan 17, 2017 at 09:22:38PM -0800, Guenter Roeck wrote:
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5191:38: error: array type has incomplete element type ‘struct sh_pfc_bias_info’
> >  static const struct sh_pfc_bias_info bias_info[] = {
> >                                       ^
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c: In function ‘r8a7795_pinmux_get_bias’:
> > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5362:9: error: implicit declaration of function ‘sh_pfc_pin_to_bias_info’ [-Werror=implicit-function-declaration]
> >   info = sh_pfc_pin_to_bias_info(bias_info, ARRAY_SIZE(bias_info), pin);
> > 
> > This affects arm64 builds (defconfig, allmodconfig).
> > 
> > Guess something is missing in commit 30c49bf7c504 ("pinctrl: sh-pfc: r8a7795:
> > Use lookup function for bias data"). Copying the author.
> 
> Looks like I need to add c314c9f15aa5 ("pinctrl: sh-pfc: Add helper to
> handle bias lookup table") to handle this.

Yes this commit is also needed.

I see my error that I marked the first commit with a Fixes tag while the 
dependency was not documented. In the future how can I document such 
dependencies?

> 
> Odd that kbuild didn't find this issue, your build system covers more
> than it does :)
> 
> thanks,
> 
> greg k-h

-- 
Regards,
Niklas Söderlund

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c)
  2017-01-18  7:36   ` Niklas Söderlund
@ 2017-01-18  7:47     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 5+ messages in thread
From: Greg Kroah-Hartman @ 2017-01-18  7:47 UTC (permalink / raw)
  To: Niklas Söderlund; +Cc: Guenter Roeck, stable

On Wed, Jan 18, 2017 at 08:36:05AM +0100, Niklas Söderlund wrote:
> Hi Guenter and Greg,
> 
> On 2017-01-18 08:03:48 +0100, Greg Kroah-Hartman wrote:
> > On Tue, Jan 17, 2017 at 09:22:38PM -0800, Guenter Roeck wrote:
> > > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5191:38: error: array type has incomplete element type ‘struct sh_pfc_bias_info’
> > >  static const struct sh_pfc_bias_info bias_info[] = {
> > >                                       ^
> > > drivers/pinctrl/sh-pfc/pfc-r8a7795.c: In function ‘r8a7795_pinmux_get_bias’:
> > > drivers/pinctrl/sh-pfc/pfc-r8a7795.c:5362:9: error: implicit declaration of function ‘sh_pfc_pin_to_bias_info’ [-Werror=implicit-function-declaration]
> > >   info = sh_pfc_pin_to_bias_info(bias_info, ARRAY_SIZE(bias_info), pin);
> > > 
> > > This affects arm64 builds (defconfig, allmodconfig).
> > > 
> > > Guess something is missing in commit 30c49bf7c504 ("pinctrl: sh-pfc: r8a7795:
> > > Use lookup function for bias data"). Copying the author.
> > 
> > Looks like I need to add c314c9f15aa5 ("pinctrl: sh-pfc: Add helper to
> > handle bias lookup table") to handle this.
> 
> Yes this commit is also needed.
> 
> I see my error that I marked the first commit with a Fixes tag while the 
> dependency was not documented. In the future how can I document such 
> dependencies?

You can add the commit id after the cc: stable line like:
	cc: stable <stable@vger.kernel.org> # 4.4+  c314c9f15aa5

the Documentation/stable_kernel_rules.txt file (wherever it moved to),
should describe this...

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-01-18  7:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-18  5:22 Build failures in v4.9-stable-queue (drivers/pinctrl/sh-pfc/pfc-r8a7795.c) Guenter Roeck
2017-01-18  7:03 ` Greg Kroah-Hartman
2017-01-18  7:04   ` Greg Kroah-Hartman
2017-01-18  7:36   ` Niklas Söderlund
2017-01-18  7:47     ` Greg Kroah-Hartman

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).