Skip to content

Commit

Permalink
K64F ENET: Update to remove unused variable. This is no longer availa…
Browse files Browse the repository at this point in the history
…ble in the updated SDK ENET driver
  • Loading branch information
mmahadevan108 committed Nov 3, 2016
1 parent 931da51 commit 177eaff
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,8 @@ static void update_read_buffer(uint8_t *buf)
/* Increases the buffer descriptor to the next one. */
if (g_handle.rxBdCurrent->control & ENET_BUFFDESCRIPTOR_RX_WRAP_MASK) {
g_handle.rxBdCurrent = g_handle.rxBdBase;
g_handle.rxBdDirty = g_handle.rxBdBase;
} else {
g_handle.rxBdCurrent++;
g_handle.rxBdDirty++;
}

/* Actives the receive buffer descriptor. */
Expand Down

0 comments on commit 177eaff

Please sign in to comment.