Skip to content

Commit

Permalink
pci: Fix dword type to uint32_t
Browse files Browse the repository at this point in the history
Signed-off-by: Connor Davis <[email protected]>
  • Loading branch information
cjams authored and wipawel committed Jan 18, 2022
1 parent 19b822a commit 0dc23a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/arch/x86/pci_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ typedef union pci_cfg_addr pci_cfg_addr_t;
union pci_cfg_value {
uint8_t byte[4];
uint16_t word[2];
uint16_t dword;
uint32_t dword;
};
typedef union pci_cfg_value pci_cfg_value_t;

Expand Down

0 comments on commit 0dc23a9

Please sign in to comment.