diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 2fda4d612b8..4289e9146ae 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -2759,6 +2759,16 @@ extern void up_ledoff(int led); Each SDIOI device driver must implement an instance of struct sdio_dev_s. That structure defines a call table with the following methods:

+

+ Mutual exclusion: +

+

Initialization/setup:

@@ -2767,13 +2777,13 @@ extern void up_ledoff(int led); uint8_t (*status)(FAR struct sdio_dev_s *dev);
void (*widebus)(FAR struct sdio_dev_s *dev, bool enable);
void (*clock)(FAR struct sdio_dev_s *dev, enum sdio_clock_e rate);
- int (*attach)(FAR struct sdio_dev_s *dev);

+ int (*attach)(FAR struct sdio_dev_s *dev);

Command/Status/Data Transfer: