aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2011-04-12 12:59:09 -0400
committerChris Ball <cjb@laptop.org>2011-05-24 21:00:59 -0400
commit853c6cac0dc0d9d330deb5b48c19eebafaed1841 (patch)
tree88bbcb5a7b32f23dba7d42d7e61d55ff2d1fc442 /include/linux/mmc
parent32780cd1350e651e68bdf33b7f5b009d21d5b794 (diff)
downloadkernel_samsung_smdk4412-853c6cac0dc0d9d330deb5b48c19eebafaed1841.zip
kernel_samsung_smdk4412-853c6cac0dc0d9d330deb5b48c19eebafaed1841.tar.gz
kernel_samsung_smdk4412-853c6cac0dc0d9d330deb5b48c19eebafaed1841.tar.bz2
mmc: quirks: fix truncation warnings
Fix data truncation warnings: .manfid is not unsigned long: drivers/mmc/core/quirks.c:36: warning: large integer implicitly truncated to unsigned type drivers/mmc/core/quirks.c:40: warning: large integer implicitly truncated to unsigned type drivers/mmc/core/quirks.c:43: warning: large integer implicitly truncated to unsigned type drivers/mmc/core/quirks.c:46: warning: large integer implicitly truncated to unsigned type Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include/linux/mmc')
-rw-r--r--include/linux/mmc/card.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
index c651317..937f852 100644
--- a/include/linux/mmc/card.h
+++ b/include/linux/mmc/card.h
@@ -180,7 +180,7 @@ struct mmc_fixup {
int data;
};
-#define CID_MANFID_ANY (-1ul)
+#define CID_MANFID_ANY (-1u)
#define CID_OEMID_ANY ((unsigned short) -1)
#define CID_NAME_ANY (NULL)