wireless/gs2200m: Rename usrsock_request to usrsock_handle_request
fix the conflict after usrsock reconstruct: https://github.com/apache/incubator-nuttx/pull/6949 Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
1e4165220e
commit
0d85084741
@ -378,10 +378,10 @@ read_req(int fd, FAR const struct usrsock_request_common_s *com_hdr,
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Name: usrsock_request
|
||||
* Name: usrsock_handle_request
|
||||
****************************************************************************/
|
||||
|
||||
static int usrsock_request(int fd, FAR struct gs2200m_s *priv)
|
||||
static int usrsock_handle_request(int fd, FAR struct gs2200m_s *priv)
|
||||
{
|
||||
FAR struct usrsock_request_common_s *com_hdr;
|
||||
union usrsock_request_u req;
|
||||
@ -1675,7 +1675,7 @@ static int gs2200m_loop(FAR struct gs2200m_s *priv)
|
||||
|
||||
if (fds[0].revents & POLLIN)
|
||||
{
|
||||
ret = usrsock_request(fd[0], priv);
|
||||
ret = usrsock_handle_request(fd[0], priv);
|
||||
ASSERT(0 == ret);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user