mirror of https://github.com/xqemu/xqemu.git
xen: Use the PCI_DEVICE macro
TYPE_XEN_PT_DEVICE is a subclass of TYPE_PCI_DEVICE, the clean way to access the PCIDevice pointer is using the PCI_DEVICE() macro. Suggested-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Markus Armbruster <armbru@redhat.com> Acked-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20180705155811.20366-4-f4bug@amsat.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
7396972021
commit
40e2297b4c
|
@ -358,7 +358,7 @@ static uint64_t xen_pt_get_bar_size(PCIIORegion *r)
|
||||||
static XenPTBarFlag xen_pt_bar_reg_parse(XenPCIPassthroughState *s,
|
static XenPTBarFlag xen_pt_bar_reg_parse(XenPCIPassthroughState *s,
|
||||||
int index)
|
int index)
|
||||||
{
|
{
|
||||||
PCIDevice *d = &s->dev;
|
PCIDevice *d = PCI_DEVICE(s);
|
||||||
XenPTRegion *region = NULL;
|
XenPTRegion *region = NULL;
|
||||||
PCIIORegion *r;
|
PCIIORegion *r;
|
||||||
|
|
||||||
|
@ -469,7 +469,7 @@ static int xen_pt_bar_reg_write(XenPCIPassthroughState *s, XenPTReg *cfg_entry,
|
||||||
{
|
{
|
||||||
XenPTRegInfo *reg = cfg_entry->reg;
|
XenPTRegInfo *reg = cfg_entry->reg;
|
||||||
XenPTRegion *base = NULL;
|
XenPTRegion *base = NULL;
|
||||||
PCIDevice *d = &s->dev;
|
PCIDevice *d = PCI_DEVICE(s);
|
||||||
const PCIIORegion *r;
|
const PCIIORegion *r;
|
||||||
uint32_t writable_mask = 0;
|
uint32_t writable_mask = 0;
|
||||||
uint32_t bar_emu_mask = 0;
|
uint32_t bar_emu_mask = 0;
|
||||||
|
@ -543,7 +543,7 @@ static int xen_pt_exp_rom_bar_reg_write(XenPCIPassthroughState *s,
|
||||||
{
|
{
|
||||||
XenPTRegInfo *reg = cfg_entry->reg;
|
XenPTRegInfo *reg = cfg_entry->reg;
|
||||||
XenPTRegion *base = NULL;
|
XenPTRegion *base = NULL;
|
||||||
PCIDevice *d = (PCIDevice *)&s->dev;
|
PCIDevice *d = PCI_DEVICE(s);
|
||||||
uint32_t writable_mask = 0;
|
uint32_t writable_mask = 0;
|
||||||
uint32_t throughable_mask = get_throughable_mask(s, reg, valid_mask);
|
uint32_t throughable_mask = get_throughable_mask(s, reg, valid_mask);
|
||||||
pcibus_t r_size = 0;
|
pcibus_t r_size = 0;
|
||||||
|
@ -1587,7 +1587,7 @@ static int xen_pt_pcie_size_init(XenPCIPassthroughState *s,
|
||||||
const XenPTRegGroupInfo *grp_reg,
|
const XenPTRegGroupInfo *grp_reg,
|
||||||
uint32_t base_offset, uint8_t *size)
|
uint32_t base_offset, uint8_t *size)
|
||||||
{
|
{
|
||||||
PCIDevice *d = &s->dev;
|
PCIDevice *d = PCI_DEVICE(s);
|
||||||
uint8_t version = get_capability_version(s, base_offset);
|
uint8_t version = get_capability_version(s, base_offset);
|
||||||
uint8_t type = get_device_type(s, base_offset);
|
uint8_t type = get_device_type(s, base_offset);
|
||||||
uint8_t pcie_size = 0;
|
uint8_t pcie_size = 0;
|
||||||
|
|
Loading…
Reference in New Issue