Fix doxygen comment in ethernet.c

This commit is contained in:
Dirk Ziegelmeier 2016-08-23 16:09:32 +02:00
parent 56dc574bed
commit d2f52e19d5

View File

@ -228,11 +228,11 @@ free_and_return:
* Send an ethernet packet on the network using netif->linkoutput
* The ethernet header is filled in before sending.
*
* @params netif the lwIP network interface on which to send the packet
* @params p the packet to send, p->payload pointing to the (uninitialized) ethernet header
* @params src the source MAC address to be copied into the ethernet header
* @params dst the destination MAC address to be copied into the ethernet header
* @params eth_type ethernet type
* @param netif the lwIP network interface on which to send the packet
* @param p the packet to send, p->payload pointing to the (uninitialized) ethernet header
* @param src the source MAC address to be copied into the ethernet header
* @param dst the destination MAC address to be copied into the ethernet header
* @param eth_type ethernet type
* @return ERR_OK if the packet was sent, any other err_t on failure
*/
err_t