.TH "pci_read_config_dword_nodev" 9 "pci_read_config_dword_nodev" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME pci_read_config_dword_nodev \- read a dword from a pci device .SH SYNOPSIS .B "int" pci_read_config_dword_nodev .BI "(struct pci_ops *" ops "," .BI "u8 " bus "," .BI "u8 " slot "," .BI "u8 " function "," .BI "int " where "," .BI "u32 *" value ");" .SH ARGUMENTS .IP "ops" 12 pointer to a \fBstruct\fP pci_ops that will be used to read from the pci device .IP "bus" 12 the bus of the pci device to read from .IP "slot" 12 the pci slot number of the pci device to read from .IP "function" 12 the function of the pci device to read from .IP "where" 12 the location on the pci address space to read from .IP "value" 12 pointer to where to place the data read .SH "DESCRIPTION" Like \fBpci_read_config_dword\fP but works for pci devices that do not have a pci_dev structure set up yet. Returns 0 on success.