mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Apply missing s/rv/res/g in previous commit.
This commit is contained in:
parent
e35395ce21
commit
69643a41ac
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174822
@ -457,7 +457,7 @@ grackle_activate_resource(device_t bus, device_t child, int type, int rid,
|
||||
return (ENOMEM);
|
||||
|
||||
rman_set_virtual(res, p);
|
||||
rman_set_bustag(rv, &bs_le_tag);
|
||||
rman_set_bustag(res, &bs_le_tag);
|
||||
rman_set_bushandle(res, (u_long)p);
|
||||
}
|
||||
|
||||
|
@ -492,7 +492,7 @@ macio_activate_resource(device_t bus, device_t child, int type, int rid,
|
||||
if (p == NULL)
|
||||
return (ENOMEM);
|
||||
rman_set_virtual(res, p);
|
||||
rman_set_bustag(rv, &bs_le_tag);
|
||||
rman_set_bustag(res, &bs_le_tag);
|
||||
rman_set_bushandle(res, (u_long)p);
|
||||
}
|
||||
|
||||
|
@ -427,7 +427,7 @@ uninorth_activate_resource(device_t bus, device_t child, int type, int rid,
|
||||
if (p == NULL)
|
||||
return (ENOMEM);
|
||||
rman_set_virtual(res, p);
|
||||
rman_set_bustag(rv, &bs_le_tag);
|
||||
rman_set_bustag(res, &bs_le_tag);
|
||||
rman_set_bushandle(res, (u_long)p);
|
||||
}
|
||||
|
||||
|
@ -386,7 +386,7 @@ iobus_activate_resource(device_t bus, device_t child, int type, int rid,
|
||||
if (p == NULL)
|
||||
return (ENOMEM);
|
||||
rman_set_virtual(res, p);
|
||||
rman_set_bustag(rv, &bs_le_tag);
|
||||
rman_set_bustag(res, &bs_le_tag);
|
||||
rman_set_bushandle(res, (u_long)p);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user