diff options
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/pci/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h index 37ffa53119..fae2170a2a 100644 --- a/include/hw/pci/pci.h +++ b/include/hw/pci/pci.h @@ -421,7 +421,7 @@ pci_get_byte(const uint8_t *config) static inline void pci_set_word(uint8_t *config, uint16_t val) { - cpu_to_le16wu((uint16_t *)config, val); + stw_le_p(config, val); } static inline uint16_t |