Home | History | Annotate | Download | only in bus

Lines Matching refs:offset

32  * Check PCI configuration space offset against exclusion list
35 * @v offset Offset within PCI configuration space
39 pci_backup_excluded ( struct pci_device *pci, unsigned int offset,
45 if ( offset == *exclude ) {
46 DBGC ( pci, "PCI %p skipping configuration offset "
47 "%02x\n", pci, offset );
63 unsigned int offset;
66 for ( offset = 0, dword = backup->dwords ; offset < 0x100 ;
67 offset += sizeof ( *dword ) , dword++ ) {
68 if ( ! pci_backup_excluded ( pci, offset, exclude ) )
69 pci_read_config_dword ( pci, offset, dword );
82 unsigned int offset;
85 for ( offset = 0, dword = backup->dwords ; offset < 0x100 ;
86 offset += sizeof ( *dword ) , dword++ ) {
87 if ( ! pci_backup_excluded ( pci, offset, exclude ) )
88 pci_write_config_dword ( pci, offset, *dword );