Make compile again using proper protoypes for

pcib_read/write_config DEVMETHOD.
This commit is contained in:
Bjoern A. Zeeb 2009-06-17 10:26:37 +00:00
parent 23678e67c0
commit ed34ec5ed8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=194343

View file

@ -287,7 +287,7 @@ idtpci_maxslots(device_t dev)
}
static uint32_t
idtpci_read_config(device_t dev, int bus, int slot, int func, int reg,
idtpci_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg,
int bytes)
{
uint32_t data;
@ -343,7 +343,7 @@ idtpci_read_config(device_t dev, int bus, int slot, int func, int reg,
}
static void
idtpci_write_config(device_t dev, int bus, int slot, int func, int reg,
idtpci_write_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg,
uint32_t data, int bytes)
{
bus_addr_t addr;