anchao commented on code in PR #7314: URL: https://github.com/apache/incubator-nuttx/pull/7314#discussion_r996258454
########## net/netdev/netdev_ioctl.c: ########## @@ -1053,6 +1053,21 @@ static int netdev_ifr_ioctl(FAR struct socket *psock, int cmd, break; #endif +#if defined(CONFIG_NETDEV_IOCTL) && defined(CONFIG_NET_CELLULAR) + case SIOCSCELLNETDEV: /* set params for cellular network devices */ + { + dev = netdev_findbyname(req->ifr_name); + if (dev && dev->d_ioctl) + { + struct cell_ioctl_data_s *cell_netdev_data = Review Comment: Thank you, Done! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org