Commit f5c5179b authored by Ulf Hansson's avatar Ulf Hansson

mmc: core: Convert the error field in struct mmc_command|data into an int

Everybody expects the error field in the struct mmc_command|data to be
and int but it's actually an unsigned int. Let's convert it into an int
to meet the expectations.
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 16b23787
...@@ -79,7 +79,7 @@ struct mmc_command { ...@@ -79,7 +79,7 @@ struct mmc_command {
#define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_MASK) #define mmc_cmd_type(cmd) ((cmd)->flags & MMC_CMD_MASK)
unsigned int retries; /* max number of retries */ unsigned int retries; /* max number of retries */
unsigned int error; /* command error */ int error; /* command error */
/* /*
* Standard errno values are used for errors, but some have specific * Standard errno values are used for errors, but some have specific
...@@ -108,7 +108,7 @@ struct mmc_data { ...@@ -108,7 +108,7 @@ struct mmc_data {
unsigned int timeout_clks; /* data timeout (in clocks) */ unsigned int timeout_clks; /* data timeout (in clocks) */
unsigned int blksz; /* data block size */ unsigned int blksz; /* data block size */
unsigned int blocks; /* number of blocks */ unsigned int blocks; /* number of blocks */
unsigned int error; /* data error */ int error; /* data error */
unsigned int flags; unsigned int flags;
#define MMC_DATA_WRITE (1 << 8) #define MMC_DATA_WRITE (1 << 8)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment