X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/9c86d6da946b19a513ab554ee12473360d38d93d..refs/heads/master:/net/etherboot-compat.h diff --git a/net/etherboot-compat.h b/net/etherboot-compat.h index 0b121a3..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 @@ -19,8 +30,8 @@ struct nic { unsigned char hwaddr[6]; - struct pbuf * (*recv) (struct nic *nic); - void (*transmit) (struct pbuf *p); + int (*recv) (struct nic *nic); + void (*transmit) (struct nic *nic, struct pbuf *p); }; #define virt_to_bus(x) memory_v2p((void *)(x))