diff options
author | jfv <jfv@FreeBSD.org> | 2010-03-31 16:42:22 +0000 |
---|---|---|
committer | jfv <jfv@FreeBSD.org> | 2010-03-31 16:42:22 +0000 |
commit | 06b1277a42421d9b0375cb05924076fca4ec20cb (patch) | |
tree | 81cf20422aa8cd72e8bc478d01eb3be4dc6580e5 | |
parent | 7baff87d11f4d8d368d4f2c81ef1d2b9f9965c81 (diff) | |
download | FreeBSD-src-06b1277a42421d9b0375cb05924076fca4ec20cb.zip FreeBSD-src-06b1277a42421d9b0375cb05924076fca4ec20cb.tar.gz |
Fix poll handler declaration.
-rw-r--r-- | sys/dev/e1000/if_lem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/e1000/if_lem.c b/sys/dev/e1000/if_lem.c index 03a679d..ede1b6e 100644 --- a/sys/dev/e1000/if_lem.c +++ b/sys/dev/e1000/if_lem.c @@ -269,7 +269,7 @@ static void lem_add_rx_process_limit(struct adapter *, const char *, #endif /* ~EM_LEGACY_IRQ */ #ifdef DEVICE_POLLING -static poll_handler_t em_poll; +static poll_handler_t lem_poll; #endif /* POLLING */ /********************************************************************* |