s/struct device */device_t/g
Submitted by: kmacy
This commit is contained in:
parent
689d1f5128
commit
edaf61e159
@ -160,7 +160,7 @@ struct pcpu {
|
||||
struct lock_list_entry *pc_spinlocks;
|
||||
struct vmmeter pc_cnt; /* VM stats counters */
|
||||
long pc_cp_time[CPUSTATES]; /* statclock ticks */
|
||||
struct device *pc_device;
|
||||
device_t pc_device;
|
||||
void *pc_netisr; /* netisr SWI cookie */
|
||||
int pc_unused1; /* unused field */
|
||||
int pc_domain; /* Memory domain. */
|
||||
|
@ -126,7 +126,7 @@ int rman_first_free_region(struct rman *rm, rman_res_t *start, rman_res_t *end);
|
||||
bus_space_handle_t rman_get_bushandle(struct resource *);
|
||||
bus_space_tag_t rman_get_bustag(struct resource *);
|
||||
rman_res_t rman_get_end(struct resource *);
|
||||
struct device *rman_get_device(struct resource *);
|
||||
device_t rman_get_device(struct resource *);
|
||||
u_int rman_get_flags(struct resource *);
|
||||
int rman_get_rid(struct resource *);
|
||||
rman_res_t rman_get_size(struct resource *);
|
||||
@ -143,13 +143,13 @@ int rman_is_region_manager(struct resource *r, struct rman *rm);
|
||||
int rman_release_resource(struct resource *r);
|
||||
struct resource *rman_reserve_resource(struct rman *rm, rman_res_t start,
|
||||
rman_res_t end, rman_res_t count,
|
||||
u_int flags, struct device *dev);
|
||||
u_int flags, device_t dev);
|
||||
struct resource *rman_reserve_resource_bound(struct rman *rm, rman_res_t start,
|
||||
rman_res_t end, rman_res_t count, rman_res_t bound,
|
||||
u_int flags, struct device *dev);
|
||||
u_int flags, device_t dev);
|
||||
void rman_set_bushandle(struct resource *_r, bus_space_handle_t _h);
|
||||
void rman_set_bustag(struct resource *_r, bus_space_tag_t _t);
|
||||
void rman_set_device(struct resource *_r, struct device *_dev);
|
||||
void rman_set_device(struct resource *_r, device_t _dev);
|
||||
void rman_set_end(struct resource *_r, rman_res_t _end);
|
||||
void rman_set_rid(struct resource *_r, int _rid);
|
||||
void rman_set_start(struct resource *_r, rman_res_t _start);
|
||||
|
Loading…
Reference in New Issue
Block a user