.TH "pci_write_config_dword_nodev" 9 "pci_write_config_dword_nodev" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME pci_write_config_dword_nodev \- write a dword to a pci device .SH SYNOPSIS .B "int" pci_write_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 write to the pci device .IP "bus" 12 the bus of the pci device to write to .IP "slot" 12 the pci slot number of the pci device to write to .IP "function" 12 the function of the pci device to write to .IP "where" 12 the location on the pci address space to write to .IP "value" 12 the value to write to the pci device .SH "DESCRIPTION" Like \fBpci_write_config_dword\fP but works for pci devices that do not have a pci_dev structure set up yet. Returns 0 on success.