You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/10/14 18:27:20 UTC

[GitHub] [incubator-nuttx] pkarashchenko commented on a diff in pull request #7314: Add Cellular link layer support

pkarashchenko commented on code in PR #7314:
URL: https://github.com/apache/incubator-nuttx/pull/7314#discussion_r996028889


##########
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:
   ```suggestion
                 FAR struct cell_ioctl_data_s *cell_netdev_data =
   ```
   



-- 
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-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org