linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Re: [Patch v2 01/10] driver/edac/mpc85xx_edac: Fix compiling error
       [not found] ` <1469745064-26597-2-git-send-email-york.sun@nxp.com>
@ 2016-08-04 10:01   ` Borislav Petkov
  2016-08-04 17:45     ` Bjorn Helgaas
  0 siblings, 1 reply; 2+ messages in thread
From: Borislav Petkov @ 2016-08-04 10:01 UTC (permalink / raw)
  To: York Sun
  Cc: linux-edac, morbidrsa, oss, stuart.yoder, Benjamin Herrenschmidt,
	Paul Mackerras, Michael Ellerman, Bjorn Helgaas, linuxppc-dev,
	linux-kernel

On Thu, Jul 28, 2016 at 03:30:55PM -0700, York Sun wrote:
> Two symbols are missing if mpc85xx_edac driver is compiled as module.
> 
> Signed-off-by: York Sun <york.sun@nxp.com>
> ---
> Change log
>   v2: no change
> 
>  arch/powerpc/kernel/pci-common.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
> index 0f7a60f..86bc484 100644
> --- a/arch/powerpc/kernel/pci-common.c
> +++ b/arch/powerpc/kernel/pci-common.c
> @@ -226,6 +226,7 @@ struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
>  	}
>  	return NULL;
>  }
> +EXPORT_SYMBOL(pci_find_hose_for_OF_device);
>  
>  /*
>   * Reads the interrupt pin to determine if interrupt is use by card.
> @@ -1585,6 +1586,7 @@ int early_find_capability(struct pci_controller *hose, int bus, int devfn,
>  {
>  	return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
>  }
> +EXPORT_SYMBOL(early_find_capability);

Please use get_maintainer.pl in order to CC the proper people when
preparing patches for the kernel.

I've CCed them now.

-- 
Regards/Gruss,
    Boris.

ECO tip #101: Trim your mails when you reply.
--

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

* Re: [Patch v2 01/10] driver/edac/mpc85xx_edac: Fix compiling error
  2016-08-04 10:01   ` [Patch v2 01/10] driver/edac/mpc85xx_edac: Fix compiling error Borislav Petkov
@ 2016-08-04 17:45     ` Bjorn Helgaas
  0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Helgaas @ 2016-08-04 17:45 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: York Sun, linux-edac, morbidrsa, oss, stuart.yoder,
	Benjamin Herrenschmidt, Paul Mackerras, Michael Ellerman,
	Bjorn Helgaas, linuxppc-dev, linux-kernel

On Thu, Aug 04, 2016 at 12:01:17PM +0200, Borislav Petkov wrote:
> On Thu, Jul 28, 2016 at 03:30:55PM -0700, York Sun wrote:
> > Two symbols are missing if mpc85xx_edac driver is compiled as module.
> > 
> > Signed-off-by: York Sun <york.sun@nxp.com>
> > ---
> > Change log
> >   v2: no change
> > 
> >  arch/powerpc/kernel/pci-common.c | 2 ++
> >  1 file changed, 2 insertions(+)
> > 
> > diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
> > index 0f7a60f..86bc484 100644
> > --- a/arch/powerpc/kernel/pci-common.c
> > +++ b/arch/powerpc/kernel/pci-common.c
> > @@ -226,6 +226,7 @@ struct pci_controller* pci_find_hose_for_OF_device(struct device_node* node)
> >  	}
> >  	return NULL;
> >  }
> > +EXPORT_SYMBOL(pci_find_hose_for_OF_device);
> >  
> >  /*
> >   * Reads the interrupt pin to determine if interrupt is use by card.
> > @@ -1585,6 +1586,7 @@ int early_find_capability(struct pci_controller *hose, int bus, int devfn,
> >  {
> >  	return pci_bus_find_capability(fake_pci_bus(hose, bus), devfn, cap);
> >  }
> > +EXPORT_SYMBOL(early_find_capability);

arch/microblaze also contains a declaration and implementation of
early_find_capability(), but as far as I can see, this was just copied
from powerpc, and it is never used on microblaze.  So just as a matter
of good code hygiene, please add a patch to remove it from microblaze.

mpc85xx looks like a weird mix of platform driver and PCI device
driver.  If loaded as a module, it shouldn't need
early_find_capability(); regular pci_find_capability() (or just
pci_is_pcie()) should work fine by the time we can load modules.
Maybe it would even work by the time mpc85xx_pci_err_probe() runs when
built-in.

The whole early_find_capability() thing seems a little questionable,
too, but it's really only used in the FSL enumeration path, so maybe
there's something really special about that system.

Bjorn

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

end of thread, other threads:[~2016-08-04 17:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1469745064-26597-1-git-send-email-york.sun@nxp.com>
     [not found] ` <1469745064-26597-2-git-send-email-york.sun@nxp.com>
2016-08-04 10:01   ` [Patch v2 01/10] driver/edac/mpc85xx_edac: Fix compiling error Borislav Petkov
2016-08-04 17:45     ` Bjorn Helgaas

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