Resort a few accessor routines so that they are consistently grouped

with 'set_foo/get_foo' adjacent to each other.
This commit is contained in:
John Baldwin 2008-08-25 16:16:57 +00:00
parent 94bf3b9f69
commit cf22c63dd5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182162

View File

@ -718,12 +718,24 @@ rman_make_alignment_flags(uint32_t size)
return(RF_ALIGNMENT_LOG2(i));
}
void
rman_set_start(struct resource *r, u_long start)
{
r->__r_i->r_start = start;
}
u_long
rman_get_start(struct resource *r)
{
return (r->__r_i->r_start);
}
void
rman_set_end(struct resource *r, u_long end)
{
r->__r_i->r_end = end;
}
u_long
rman_get_end(struct resource *r)
{
@ -784,36 +796,24 @@ rman_set_rid(struct resource *r, int rid)
r->__r_i->r_rid = rid;
}
void
rman_set_start(struct resource *r, u_long start)
{
r->__r_i->r_start = start;
}
void
rman_set_end(struct resource *r, u_long end)
{
r->__r_i->r_end = end;
}
int
rman_get_rid(struct resource *r)
{
return (r->__r_i->r_rid);
}
struct device *
rman_get_device(struct resource *r)
{
return (r->__r_i->r_dev);
}
void
rman_set_device(struct resource *r, struct device *dev)
{
r->__r_i->r_dev = dev;
}
struct device *
rman_get_device(struct resource *r)
{
return (r->__r_i->r_dev);
}
int
rman_is_region_manager(struct resource *r, struct rman *rm)
{