* Bad PCI function mask in atiixp driver (was: Re: Linux 2.6.19)
@ 2006-12-03 4:06 Chuck Ebbert
2006-12-03 4:24 ` Randy Dunlap
0 siblings, 1 reply; 3+ messages in thread
From: Chuck Ebbert @ 2006-12-03 4:06 UTC (permalink / raw)
To: Matthijs; +Cc: Anatoli Antonovitch, linux-kernel, Alan Cox, Linus Torvalds
In-Reply-To: <4571D9FE.2050107@gmail.com>
On Sat, 02 Dec 2006 20:54:38 +0100, Matthijs wrote:
> make modules gives me these warnings in modpost and then errors out:
> WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
Message is from scripts/file2alias.c::do_pci_entry():
if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
|| (subclass_mask != 0 && subclass_mask != 0xFF)
|| (interface_mask != 0 && interface_mask != 0xFF)) {
warn("Can't handle masks in %s:%04X\n",
filename, id->class_mask);
return 0;
}
and it is complaining about this recent addition to atiixp.c:
@@ -348,6 +368,7 @@ static struct pci_device_id atiixp_pci_t
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
{ PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
+ { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_SATA, PCI_ANY_ID, PCI_ANY_ID, (PCI_CLASS_STORAGE_IDE<<8)|0x8a, 0xffff05, 1},
{ 0, },
};
MODULE_DEVICE_TABLE(pci, atiixp_pci_tbl);
--
Chuck
"Even supernovas have their duller moments."
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bad PCI function mask in atiixp driver (was: Re: Linux 2.6.19)
2006-12-03 4:06 Chuck Ebbert
@ 2006-12-03 4:24 ` Randy Dunlap
0 siblings, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2006-12-03 4:24 UTC (permalink / raw)
To: Chuck Ebbert
Cc: Matthijs, Anatoli Antonovitch, linux-kernel, Alan Cox,
Linus Torvalds
On Sat, 2 Dec 2006 23:06:57 -0500 Chuck Ebbert wrote:
> In-Reply-To: <4571D9FE.2050107@gmail.com>
>
> On Sat, 02 Dec 2006 20:54:38 +0100, Matthijs wrote:
>
> > make modules gives me these warnings in modpost and then errors out:
> > WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
>
> Message is from scripts/file2alias.c::do_pci_entry():
>
> if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
> || (subclass_mask != 0 && subclass_mask != 0xFF)
> || (interface_mask != 0 && interface_mask != 0xFF)) {
> warn("Can't handle masks in %s:%04X\n",
> filename, id->class_mask);
> return 0;
> }
>
> and it is complaining about this recent addition to atiixp.c:
>
> @@ -348,6 +368,7 @@ static struct pci_device_id atiixp_pci_t
> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_IDE, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
> + { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_SATA, PCI_ANY_ID, PCI_ANY_ID, (PCI_CLASS_STORAGE_IDE<<8)|0x8a, 0xffff05, 1},
> { 0, },
> };
> MODULE_DEVICE_TABLE(pci, atiixp_pci_tbl);
> --
http://lkml.org/lkml/2006/11/01/199
However, I'm still dubious.
---
~Randy
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Bad PCI function mask in atiixp driver (was: Re: Linux 2.6.19)
@ 2006-12-03 20:56 Bernard Pidoux
0 siblings, 0 replies; 3+ messages in thread
From: Bernard Pidoux @ 2006-12-03 20:56 UTC (permalink / raw)
To: linux-kernel
On Sat, 2 Dec 2006 23:06:57 -0500 Chuck Ebbert wrote:
>
>> In-Reply-To: <4571D9FE.2050107@xxxxxxxxx>
>>
>> On Sat, 02 Dec 2006 20:54:38 +0100, Matthijs wrote:
>>
>> > make modules gives me these warnings in modpost and then errors out:
>> > WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
>>
>> Message is from scripts/file2alias.c::do_pci_entry():
>>
>> if ((baseclass_mask != 0 && baseclass_mask != 0xFF)
>> || (subclass_mask != 0 && subclass_mask != 0xFF)
>> || (interface_mask != 0 && interface_mask != 0xFF)) {
>> warn("Can't handle masks in %s:%04X\n",
>> filename, id->class_mask);
>> return 0;
>> }
>>
>> and it is complaining about this recent addition to atiixp.c:
>>
>> @@ -348,6 +368,7 @@ static struct pci_device_id atiixp_pci_t
>> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_IDE, PCI_ANY_ID,
PCI_ANY_ID, 0, 0, 0},
>> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_IDE, PCI_ANY_ID,
PCI_ANY_ID, 0, 0, 0},
>> { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_IDE, PCI_ANY_ID,
PCI_ANY_ID, 0, 0, 0},
>> + { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP600_SATA, PCI_ANY_ID,
PCI_ANY_ID, (PCI_CLASS_STORAGE_IDE<<8)|0x8a, 0xffff05, 1},
>> { 0, },
>> };
>> MODULE_DEVICE_TABLE(pci, atiixp_pci_tbl);
>> --
>
>http://lkml.org/lkml/2006/11/01/199
>
>However, I'm still dubious.
>
>---
>~Randy
I made the same observation here when installing 2.6.19 :
root@bernard linux]# make modules
CHK include/linux/version.h
CHK include/linux/utsrelease.h
Building modules, stage 2.
MODPOST 573 modules
WARNING: Can't handle masks in drivers/ide/pci/atiixp:FFFF05
[root@bernard linux]#
Hardware is quite oldfashioned.
Is there any relashionship ?
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host
bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP
bridge (rev 03)
00:04.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
00:04.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:04.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
00:04.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02)
00:0b.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8029(AS)
00:0c.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 06)
00:0d.0 Mass storage controller: Promise Technology, Inc. PDC20262
(FastTrak66/Ultra66) (rev 01)
01:00.0 VGA compatible controller: ATI Technologies Inc 3D Rage Pro AGP
1X/2X (rev 5c)
Bernard.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-12-03 20:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-03 20:56 Bad PCI function mask in atiixp driver (was: Re: Linux 2.6.19) Bernard Pidoux
-- strict thread matches above, loose matches on Subject: below --
2006-12-03 4:06 Chuck Ebbert
2006-12-03 4:24 ` Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox