qemu/pci: add pci_get/set_byte
Add pci_get/set_byte to keep *_word and *_long access functions company. They are unused for now. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
ff24bd589c
commit
64d50b8b0a
12
hw/pci.h
12
hw/pci.h
@ -258,6 +258,18 @@ void pci_info(Monitor *mon);
|
||||
PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint16_t vid, uint16_t did,
|
||||
pci_map_irq_fn map_irq, const char *name);
|
||||
|
||||
static inline void
|
||||
pci_set_byte(uint8_t *config, uint8_t val)
|
||||
{
|
||||
*config = val;
|
||||
}
|
||||
|
||||
static inline uint8_t
|
||||
pci_get_byte(uint8_t *config)
|
||||
{
|
||||
return *config;
|
||||
}
|
||||
|
||||
static inline void
|
||||
pci_set_word(uint8_t *config, uint16_t val)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user