On Wed, Jun 12, 2013 at 01:43:31PM +0200, Thomas Klausner wrote: > Fixes build on NetBSD-5. > --- > src/netbsd_pci.c | 6 ++++++ > 1 file changed, 6 insertions(+)
Reviewed-by: Matthieu Herrb <[email protected]> > > diff --git a/src/netbsd_pci.c b/src/netbsd_pci.c > index 3566d7b..c9bd052 100644 > --- a/src/netbsd_pci.c > +++ b/src/netbsd_pci.c > @@ -248,6 +248,7 @@ pci_device_netbsd_write(struct pci_device *dev, const > void *data, > return 0; > } > > +#if defined(WSDISPLAYIO_GET_BUSID) > static int > pci_device_netbsd_boot_vga(struct pci_device *dev) > { > @@ -284,6 +285,7 @@ pci_device_netbsd_boot_vga(struct pci_device *dev) > > return 1; > } > +#endif > > static void > pci_system_netbsd_destroy(void) > @@ -518,7 +520,11 @@ static const struct pci_system_methods > netbsd_pci_methods = { > .read = pci_device_netbsd_read, > .write = pci_device_netbsd_write, > .fill_capabilities = pci_fill_capabilities_generic, > +#if defined(WSDISPLAYIO_GET_BUSID) > .boot_vga = pci_device_netbsd_boot_vga, > +#else > + .boot_vga = NULL, > +#endif > }; > > int > -- > 1.8.2.3 > > _______________________________________________ > [email protected]: X.Org development > Archives: http://lists.x.org/archives/xorg-devel > Info: http://lists.x.org/mailman/listinfo/xorg-devel -- Matthieu Herrb _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
