Deleted Added
full compact
34c34
< __FBSDID("$FreeBSD: head/sys/compat/ndis/kern_ndis.c 216049 2010-11-29 10:10:56Z bschmidt $");
---
> __FBSDID("$FreeBSD: head/sys/compat/ndis/kern_ndis.c 216242 2010-12-06 20:54:53Z bschmidt $");
435a436,448
> void *
> ndis_get_routine_address(functbl, name)
> struct image_patch_table *functbl;
> char *name;
> {
> int i;
>
> for (i = 0; functbl[i].ipt_name != NULL; i++)
> if (strcmp(name, functbl[i].ipt_name) == 0)
> return (functbl[i].ipt_wrap);
> return (NULL);
> }
>