Displaying 1 result from an estimated 1 matches for "module_pci_table".
2025 Feb 03
0
[PATCH 1/2] gpu: nova-core: add initial driver stub
..., Joel Fernandes wrote:
> Hi Danilo,
> On Fri, Jan 31, 2025 at 11:04:24PM +0100, Danilo Krummrich wrote:
...
>> +const BAR0_SIZE: usize = 8;
>> +pub(crate) type Bar0 = pci::Bar<BAR0_SIZE>;
>> +
>> +kernel::pci_device_table!(
>> + PCI_TABLE,
>> + MODULE_PCI_TABLE,
>> + <NovaCore as pci::Driver>::IdInfo,
>> + [(
>> + pci::DeviceId::from_id(bindings::PCI_VENDOR_ID_NVIDIA, bindings::PCI_ANY_ID as _),
>
> Does this mean it will match even non-GSP Nvidia devices?
>
Yes, it does. However, the Gpu construction a lit...