Hi Ralf
If this patch is not applied, the following errors will occur.
Please apply this patch to linux_2_4 tag.
make[1]: Entering directory `/home/yuasa/src/mips/linux/arch/mips/kernel'
mipsel-linux-gcc -D__KERNEL__ -I/home/yuasa/src/mips/linux/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
-fomit-frame-pointer -I /home/yuasa/src/mips/linux/include/asm/gcc -G 0
-mno-abicalls -fno-pic -pipe -mcpu=r4600 -mips2 -Wa,--trap -nostdinc
-iwithprefix include -DKBUILD_BASENAME=pci -c -o pci.o pci.c
pci.c:104: conflicting types for `pcibios_enable_device'
/home/yuasa/src/mips/linux/include/linux/pci.h:496: previous declaration of
`pcibios_enable_device'
make[1]: *** [pci.o] Error 1
make[1]: Leaving directory `/home/yuasa/src/mips/linux/arch/mips/kernel'
make: *** [_dir_arch/mips/kernel] Error 2
On Thu, 12 Sep 2002 18:56:12 +0900
Yoichi Yuasa <yoichi_yuasa@montavista.co.jp> wrote:
> Hi Ralf,
>
> The argument of pcibios_enable_device is changed.
>
> In include/linux/pci.h:
> int pcibios_enable_device(struct pci_dev *, int mask);
>
> The following patch is required for the cvs tree of linux_2_4 tag.
>
> --- ./arch/mips/kernel/pci.c.orig Wed May 29 12:03:16 2002
> +++ ./arch/mips/kernel/pci.c Thu Sep 12 18:22:14 2002
> @@ -100,7 +100,7 @@
> pcibios_fixup_irqs();
> }
>
> -int pcibios_enable_device(struct pci_dev *dev)
> +int pcibios_enable_device(struct pci_dev *dev, int mask)
> {
> /* pciauto_assign_resources() will enable all devices found */
> return 0;
Thanks,
Yoichi
|