1 #ifndef _DM_WRAPPER_H_ 2 #define _DM_WRAPPER_H_ 3 4 #include "kdevice_manager.h" 5 6 status_t init_dm_wrapper(void); 7 status_t uninit_dm_wrapper(void); 8 9 status_t get_root(uint32 *cookie); 10 status_t get_child(uint32 *cookie); 11 status_t get_next_child(uint32 *cookie); 12 status_t dm_get_next_attr(struct dev_attr *attr); 13 14 #endif 15