X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/bec09bd18a879a22688c68febaff8c65da41f752..2768393fc00a378e42139872bf47fe02ea6f3751:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index 2f0626f..d56dce5 100644 --- a/net/etherboot-compat.h +++ b/net/etherboot-compat.h @@ -1,3 +1,14 @@ +/* etherboot-compat.h + * EtherBoot driver compatibility routines + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + + #ifndef _ETHERBOOT_COMPAT_H #define _ETHERBOOT_COMPAT_H @@ -20,7 +31,7 @@ struct nic { unsigned char hwaddr[6]; int (*recv) (struct nic *nic); - void (*transmit) (struct pbuf *p); + void (*transmit) (struct nic *nic, struct pbuf *p); }; #define virt_to_bus(x) memory_v2p((void *)(x))