zephyr/drivers/wifi/eswifi
Daniel DeGrasse 3d4f83aaac drivers: wifi: eswifi: fix casts for 64 bit pointers
The eswifi driver uses an integer to identify the socket used for each
connection, which must be cast to and from a `void *`. This causes
warnings on 64 bit platforms, as precision is lost when casting from a
`void *` to `int`. Use a `intptr_t` type to store the socket value to
resolve this warning. Also, fix a function signature for the `accept_cb`
to use `size_t` instead of `int` for the length

Fixes #80242

Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
2024-10-24 12:25:04 -05:00
..
CMakeLists.txt
Kconfig.eswifi
eswifi.h
eswifi_bus_spi.c
eswifi_bus_uart.c
eswifi_core.c
eswifi_log.h
eswifi_offload.c
eswifi_offload.h
eswifi_shell.c
eswifi_socket.c
eswifi_socket_offload.c drivers: wifi: eswifi: fix casts for 64 bit pointers 2024-10-24 12:25:04 -05:00