]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
mmc: Change 'part_config' to be a u8 not char.
authorTom Rini <trini@konsulko.com>
Wed, 10 May 2017 19:20:16 +0000 (15:20 -0400)
committerJaehoon Chung <jh80.chung@samsung.com>
Mon, 29 May 2017 08:28:51 +0000 (17:28 +0900)
In some places we check if part_config is set to MMCPART_NOAVAILABLE
(0xff).  With part_config being a char this is always false.  We should
be using a u8 to store this value instead, after a quick consultation
with the Linux Kernel.  Reported by clang-3.8.

Cc: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
include/mmc.h

index 8346b0e19e2cd6309e3dbc374d4b100f88a8be0e..6a0ea0af21735c9fbfc880808ea7ebfc6fe4d70b 100644 (file)
@@ -430,7 +430,7 @@ struct mmc {
        u8 part_support;
        u8 part_attr;
        u8 wr_rel_set;
-       char part_config;
+       u8 part_config;
        uint tran_speed;
        uint read_bl_len;
        uint write_bl_len;