[kernel][device] remove rt_device_init_all()

This commit is contained in:
Meco Man
2021-03-19 03:01:07 +08:00
parent 295b95cd75
commit 846102efa1
4 changed files with 1 additions and 23 deletions
+1 -13
View File
@@ -12,6 +12,7 @@
* 2012-12-25 Bernard return RT_EOK if the device interface not exist.
* 2013-07-09 Grissiom add ref_count support
* 2016-04-02 Bernard fix the open_flag initialization issue.
* 2021-03-19 Meco Man remove rt_device_init_all()
*/
#include <rtthread.h>
@@ -89,19 +90,6 @@ rt_err_t rt_device_unregister(rt_device_t dev)
}
RTM_EXPORT(rt_device_unregister);
/**
* This function initializes all registered device driver
*
* @return the error code, RT_EOK on successfully.
*
* @deprecated since 1.2.x, this function is not needed because the initialization
* of a device is performed when application opens it.
*/
rt_err_t rt_device_init_all(void)
{
return RT_EOK;
}
/**
* This function finds a device driver by specified name.
*