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/04/01 10:08:49 UTC

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5927: Minor improve for mmcsd

pkarashchenko commented on a change in pull request #5927:
URL: https://github.com/apache/incubator-nuttx/pull/5927#discussion_r840434040



##########
File path: include/nuttx/sdio.h
##########
@@ -539,6 +539,24 @@
 
 #define SDIO_CLOCK(dev,rate) ((dev)->clock(dev,rate))
 
+/****************************************************************************
+ * Name: SDIO_GOTEXTCSD
+ *
+ * Description:
+ *   Notify driver EXT CSD data
+ *
+ * Input Parameters:
+ *   dev    - An instance of the SDIO device interface
+ *   buffer - Ext Csd data
+ *
+ * Returned Value:
+ *   None.
+ *
+ ****************************************************************************/
+
+#define SDIO_GOTEXTCSD(dev,buffer) \
+    ((dev)->gotextcsd?(dev)->gotextcsd(dev,buffer):OK)
+

Review comment:
       Please move this after `SDIO_DMASENDSETUP` definition.




-- 
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