hush/modutils
Bernhard Reutner-Fischer 6075b2aee0 - add FIXME. Perhaps somebody is interrested in looking into this one.
We would try to be clever and compare the *data instead of the *elt.

Somethink like this might be of more general use:
/* Unlink arbitrary element from the list that contains data */
void llist_unlink_data(llist_t **head, void *data)
{
    llist_t *elt;

    for (elt = *head; elt; elt = elt->link) {
        if (elt->data == data) {
            llist_unlink(elt);
            return;
        }
    }
}
2008-06-02 19:23:47 +00:00
..
Config.in - add alias support 2008-06-02 18:59:16 +00:00
depmod.c - add FIXME. Perhaps somebody is interrested in looking into this one. 2008-06-02 19:23:47 +00:00
insmod.c Reinstate CONFIG_CROSS_COMPILE_PREFIX 2008-06-02 04:51:29 +00:00
Kbuild - add simple first-draft unoptimized depmod just to proove Vladimir Dronnikov wrong 2008-05-26 12:01:49 +00:00
lsmod.c *: fix fallout from -Wunused-parameter 2008-03-17 09:04:04 +00:00
modprobe.c - shrink modprobe a little bit (~-40 bytes). ACKed by Yann. 2008-05-31 18:50:17 +00:00
rmmod.c - use (uC)libc functions. Saves a dozen bytes. 2008-05-27 10:13:54 +00:00