diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-09 12:24:52 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-09 12:24:52 -0700 |
commit | 87646c7959726bc0556d28f78fb730edd8365410 (patch) | |
tree | 087f074391f4beccc08626f966d945d0cad60aba /libhw/rp2040_include | |
parent | 96a751d8a5d20b2acea5ae8d10ac3d051466c2c3 (diff) | |
parent | b1414723ab4171a7ca5fc5e8a5ac7c4eb43331e2 (diff) |
Merge commit 'b1414723ab4171a7ca5fc5e8a5ac7c4eb43331e2'
Diffstat (limited to 'libhw/rp2040_include')
-rw-r--r-- | libhw/rp2040_include/libhw/w5500.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhw/rp2040_include/libhw/w5500.h b/libhw/rp2040_include/libhw/w5500.h index 80366a0..3cae620 100644 --- a/libhw/rp2040_include/libhw/w5500.h +++ b/libhw/rp2040_include/libhw/w5500.h @@ -41,7 +41,6 @@ struct _w5500_socket { _w5500_sockintr_ch_t write_ch; /* MODE_{TCP,UDP} */ bool list_open, read_open, write_open; /* MODE_TCP */ - cr_mutex_t cmd_mu; END_PRIVATE(LIBHW_W5500_H) }; @@ -59,6 +58,7 @@ struct w5500 { struct _w5500_socket sockets[8]; struct _w5500_socket *free; cr_sema_t intr; + cr_mutex_t mu; END_PRIVATE(LIBHW_W5500_H) }; |