strict kobj signatures: fix assortment of bus_read_ivar impls
Reviewed by: imp, current@ Approved by: jhb (mentor)
This commit is contained in:
parent
9cb3f3ca17
commit
4c69d78e34
@ -315,7 +315,7 @@ eisa_find_ioaddr(struct eisa_device *e_dev, int rid)
|
||||
}
|
||||
|
||||
static int
|
||||
eisa_read_ivar(device_t dev, device_t child, int which, u_long *result)
|
||||
eisa_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
|
||||
{
|
||||
struct eisa_device *e_dev = device_get_ivars(child);
|
||||
struct irq_node *irq;
|
||||
|
@ -432,7 +432,7 @@ mca_probe_nomatch (device_t dev, device_t child)
|
||||
}
|
||||
|
||||
static int
|
||||
mca_read_ivar (device_t dev, device_t child, int which, u_long * result)
|
||||
mca_read_ivar (device_t dev, device_t child, int which, uintptr_t * result)
|
||||
{
|
||||
struct mca_device * m_dev = device_get_ivars(child);
|
||||
|
||||
|
@ -112,7 +112,7 @@ spibus_child_pnpinfo_str(device_t bus, device_t child, char *buf,
|
||||
}
|
||||
|
||||
static int
|
||||
spibus_read_ivar(device_t bus, device_t child, int which, u_char *result)
|
||||
spibus_read_ivar(device_t bus, device_t child, int which, u_int *result)
|
||||
{
|
||||
struct spibus_ivar *devi = SPIBUS_IVAR(child);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user