mirror of https://github.com/ipxe/ipxe.git
[realtek] Add missing cpu_to_le16()
Reported-by: Thomas Miletich <thomas.miletich@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/6/head^2
parent
512ed2b921
commit
cc3e9f068b
|
@ -478,7 +478,7 @@ static void realtek_refill_rx ( struct realtek_nic *rtl ) {
|
|||
/* Populate receive descriptor */
|
||||
address = virt_to_bus ( iobuf->data );
|
||||
rx->address = cpu_to_le64 ( address );
|
||||
rx->length = RTL_RX_MAX_LEN;
|
||||
rx->length = cpu_to_le16 ( RTL_RX_MAX_LEN );
|
||||
wmb();
|
||||
rx->flags = ( cpu_to_le16 ( RTL_DESC_OWN ) |
|
||||
( is_last ? cpu_to_le16 ( RTL_DESC_EOR ) : 0 ) );
|
||||
|
|
Loading…
Reference in New Issue