* td_list_del_init - deletes entry from list and reinitialize it. * @entry: the element to delete from the list. */
| 259 | * @entry: the element to delete from the list. |
| 260 | */ |
| 261 | static inline void td_list_del_init(struct td_list_head *entry) |
| 262 | { |
| 263 | __td_list_del(entry->prev, entry->next); |
| 264 | TD_INIT_LIST_HEAD(entry); |
| 265 | } |
| 266 | #endif |
| 267 | |
| 268 | #if 0 |
nothing calls this directly
no test coverage detected