diff options
Diffstat (limited to 'include/linux/ioport.h')
| -rw-r--r-- | include/linux/ioport.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ioport.h b/include/linux/ioport.h index 71ab79da7e7..26fad187d66 100644 --- a/include/linux/ioport.h +++ b/include/linux/ioport.h @@ -112,12 +112,14 @@ struct resource_list {  extern struct resource ioport_resource;  extern struct resource iomem_resource; +extern struct resource *request_resource_conflict(struct resource *root, struct resource *new);  extern int request_resource(struct resource *root, struct resource *new);  extern int release_resource(struct resource *new);  void release_child_resources(struct resource *new);  extern void reserve_region_with_split(struct resource *root,  			     resource_size_t start, resource_size_t end,  			     const char *name); +extern struct resource *insert_resource_conflict(struct resource *parent, struct resource *new);  extern int insert_resource(struct resource *parent, struct resource *new);  extern void insert_resource_expand_to_fit(struct resource *root, struct resource *new);  extern int allocate_resource(struct resource *root, struct resource *new,  |