All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [parisc-linux] unresolved symbol pci_proc_init
@ 1999-10-11 11:27 Ulrich Strelow
  1999-10-11 17:08 ` Grant Grundler
  0 siblings, 1 reply; 2+ messages in thread
From: Ulrich Strelow @ 1999-10-11 11:27 UTC (permalink / raw
  To: parisc-linux

Hi all,

compiling the current CVS kernel for a non-PCI machine
like my 715/33 leads to an unresolved symbol message
for pci_proc_init.

In init/main.c is the following code:

#ifdef CONFIG_GECKO
        gsc_init();
        /*
        ** pci_init() is NOT multi-PCI bus friendly.
        */
#ifdef CONFIG_PROC_FS
        pci_proc_init();
#endif
#else
#ifdef CONFIG_PCI
        pci_init();
#endif
#endif

So pci_proc_init is included even if CONFIG_PCI is not
set.

Ulrich
__________________________________________________
Do You Yahoo!?
Bid and sell for free at http://auctions.yahoo.com

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

* Re: [parisc-linux] unresolved symbol pci_proc_init
  1999-10-11 11:27 [parisc-linux] unresolved symbol pci_proc_init Ulrich Strelow
@ 1999-10-11 17:08 ` Grant Grundler
  0 siblings, 0 replies; 2+ messages in thread
From: Grant Grundler @ 1999-10-11 17:08 UTC (permalink / raw
  To: parisc-linux

Ulrich Strelow wrote:
> Hi all,
> 
> compiling the current CVS kernel for a non-PCI machine
> like my 715/33 leads to an unresolved symbol message
> for pci_proc_init.
> 
> In init/main.c is the following code:
> 
> #ifdef CONFIG_GECKO
>         gsc_init();
>         /*
>         ** pci_init() is NOT multi-PCI bus friendly.
>         */
> #ifdef CONFIG_PROC_FS
>         pci_proc_init();
> #endif
> #else
> #ifdef CONFIG_PCI
>         pci_init();
> #endif
> #endif
> 
> So pci_proc_init is included even if CONFIG_PCI is not
> set.

Ulrich,
Apologies - that's my fault. I wasn't very clean when changing the ifdefs
to invoke gsc_init(). The ifdef should read:

	#if defined(CONFIG_PCI) && defined(CONFIG_PROC_FS)
...

If no one else objects, go ahead and submit that - after you try it. :^)

On the same note, the ifdefs in gsc_init() probably need to
use "defined(CONFIG_PCI)" around the "dino_init()" call...

sorry,
grant

> Ulrich
> __________________________________________________
> Do You Yahoo!?
> Bid and sell for free at http://auctions.yahoo.com
> 
> ---------------------------------------------------------------------------
> To unsubscribe: send e-mail to parisc-linux-request@thepuffingroup.com with
> `unsubscribe' as the subject.
> 

Grant Grundler
Communications Infrastructure Computer Operations
+1.408.447.7253

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

end of thread, other threads:[~1999-10-11 17:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
1999-10-11 11:27 [parisc-linux] unresolved symbol pci_proc_init Ulrich Strelow
1999-10-11 17:08 ` Grant Grundler

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.