Skip to content

Commit

Permalink
sd: sd_spec: fix voltage enum docs
Browse files Browse the repository at this point in the history
Fix voltage enum docs as there was a repeated comment at
`SD_OCR_VDD30_31FLAG`.

Signed-off-by: Jordan Yates <[email protected]>
  • Loading branch information
JordanYates authored and nashif committed Jul 17, 2024
1 parent 5869926 commit 3615e69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/zephyr/sd/sd_spec.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,17 +275,17 @@ enum sd_ocr_flag {
SD_OCR_VDD29_30FLAG = BIT(17),
/*!< VDD 2.9-3.0 */
SD_OCR_VDD30_31FLAG = BIT(18),
/*!< VDD 2.9-3.0 */
SD_OCR_VDD31_32FLAG = BIT(19),
/*!< VDD 3.0-3.1 */
SD_OCR_VDD32_33FLAG = BIT(20),
SD_OCR_VDD31_32FLAG = BIT(19),
/*!< VDD 3.1-3.2 */
SD_OCR_VDD33_34FLAG = BIT(21),
SD_OCR_VDD32_33FLAG = BIT(20),
/*!< VDD 3.2-3.3 */
SD_OCR_VDD34_35FLAG = BIT(22),
SD_OCR_VDD33_34FLAG = BIT(21),
/*!< VDD 3.3-3.4 */
SD_OCR_VDD35_36FLAG = BIT(23),
SD_OCR_VDD34_35FLAG = BIT(22),
/*!< VDD 3.4-3.5 */
SD_OCR_VDD35_36FLAG = BIT(23),
/*!< VDD 3.5-3.6 */
};

/**
Expand Down Expand Up @@ -353,7 +353,7 @@ enum sd_switch_arg {
/**
* @brief SD switch group numbers
*
* SD CMD6 has multiple function groups it can check/set. These indices are
* SD CMD6 has multiple function groups it can check/set. These indicies are
* used to determine which group CMD6 will interact with.
*/
enum sd_group_num {
Expand Down

0 comments on commit 3615e69

Please sign in to comment.