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/07/05 15:13:39 UTC

[GitHub] [incubator-nuttx] chengli1212 commented on a diff in pull request #6574: add empty ioctl for mmcsd_spi

chengli1212 commented on code in PR #6574:
URL: https://github.com/apache/incubator-nuttx/pull/6574#discussion_r913914632


##########
drivers/mmcsd/mmcsd_spi.c:
##########
@@ -1604,6 +1606,20 @@ static int mmcsd_geometry(FAR struct inode *inode, struct geometry *geometry)
   return OK;
 }
 
+/****************************************************************************
+ * Name: mmcsd_ioctl
+ *
+ * Description: Return device geometry
+ *
+ ****************************************************************************/
+
+static int mmcsd_ioctl(FAR struct inode *inode, int cmd, unsigned long arg)
+{
+  fwarn("Not implement, cmd:%d, arg:0x%x\n", cmd, arg);
+
+  return 0;

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

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