Skip to content
Snippets Groups Projects
Commit 3f2da751 authored by Andrew Gabbasov's avatar Andrew Gabbasov Committed by Pantelis Antoniou
Browse files

mmc: Fix typo in MMC type checking macro


The version flag constant name used in IS_MMC macro is incorrect/undefined.

Signed-off-by: default avatarAndrew Gabbasov <andrew_gabbasov@mentor.com>
parent ace97d26
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
#define SD_DATA_4BIT 0x00040000 #define SD_DATA_4BIT 0x00040000
#define IS_SD(x) ((x)->version & SD_VERSION_SD) #define IS_SD(x) ((x)->version & SD_VERSION_SD)
#define IS_MMC(x) ((x)->version & SD_VERSION_MMC) #define IS_MMC(x) ((x)->version & MMC_VERSION_MMC)
#define MMC_DATA_READ 1 #define MMC_DATA_READ 1
#define MMC_DATA_WRITE 2 #define MMC_DATA_WRITE 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment