aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2006-02-17 20:23:29 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-02-22 09:32:46 +0000
commit5bd546aa78b5d74f3162815e41940f862215d9e3 (patch)
treea80adfbb09e2714830762ffdc7c7ec7567b469df /include
parentb00dc3ad74fdb676552d46ee573b88e927240d0c (diff)
downloadlinux-5bd546aa78b5d74f3162815e41940f862215d9e3.tar.gz
[MMC] Fix mmc_cmd_type() mask
It's MMC_CMD_MASK not MMC_CMD_TYPE. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/mmc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmc/mmc.h b/include/linux/mmc/mmc.h
index f38872abc12669..bdc556d884989c 100644
--- a/include/linux/mmc/mmc.h
+++ b/include/linux/mmc/mmc.h
@@ -49,7 +49,7 @@ struct mmc_command {
/*
* These are the command types.
*/
-#define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_TYPE)
+#define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_MASK)
unsigned int retries; /* max number of retries */
unsigned int error; /* command error */