1. NAME

__list_del_entry - deletes entry from list.

2. SYNOPSIS

void __list_del_entry(struct list_head *  entry );

3. ARGUMENTS

entry
    the element to delete from the list.

4. NOTE

list_empty on entry does not return true after this, the entry is in an undefined state.

5. COPYRIGHT