diff options
Diffstat (limited to 'include/linux/async.h')
-rw-r--r-- | include/linux/async.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/async.h b/include/linux/async.h index cce4ad31e8fc..19b778d08600 100644 --- a/include/linux/async.h +++ b/include/linux/async.h @@ -90,6 +90,8 @@ async_schedule_dev(async_func_t func, struct device *dev) return async_schedule_node(func, dev, dev_to_node(dev)); } +bool async_schedule_dev_nocall(async_func_t func, struct device *dev); + /** * async_schedule_dev_domain - A device specific version of async_schedule_domain * @func: function to execute asynchronously @@ -118,4 +120,5 @@ extern void async_synchronize_cookie(async_cookie_t cookie); extern void async_synchronize_cookie_domain(async_cookie_t cookie, struct async_domain *domain); extern bool current_is_async(void); +extern void async_init(void); #endif |