Oops, add back struct alpha_pci_conf_readwrite_args.

This commit is contained in:
dyoung 2011-07-17 04:30:56 +00:00
parent ff198a0b2c
commit 32cefa1432

View File

@ -1,4 +1,4 @@
/* $NetBSD: sysarch.h,v 1.15 2011/07/17 01:08:12 dyoung Exp $ */
/* $NetBSD: sysarch.h,v 1.16 2011/07/17 04:30:56 dyoung Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -77,6 +77,15 @@ struct alpha_bus_get_window_args {
#define ALPHA_BUS_TYPE_PCI_MEM 1
#define ALPHA_BUS_TYPE_MAX 1
struct alpha_pci_conf_readwrite_args {
int write;
u_int bus;
u_int device;
u_int function;
u_int reg;
u_int32_t val;
};
extern u_int alpha_bus_window_count[];
extern int (*alpha_bus_get_window)(int, int,
struct alpha_bus_space_translation *);