diff options
author | Jaehoon Chung | 2016-12-30 15:30:16 +0900 |
---|---|---|
committer | Jaehoon Chung | 2017-01-11 19:40:13 +0900 |
commit | 07b0b9c00cc8f8e981df35ac4720057469a8d3c8 (patch) | |
tree | e95d69706c7d22e4cac913008d4f5948f0e398d1 /include/mmc.h | |
parent | 6f88a3a5d9488bc0aed5a62ca5f2a3cda4deded9 (diff) |
mmc: change the set_ios return type from void to int
To maintain consistency, set_ios type of legacy mmc_ops changed to int.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mmc.h b/include/mmc.h index 1720955a4c9..fad12d608ce 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -376,7 +376,7 @@ int mmc_getwp(struct mmc *mmc); struct mmc_ops { int (*send_cmd)(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data); - void (*set_ios)(struct mmc *mmc); + int (*set_ios)(struct mmc *mmc); int (*init)(struct mmc *mmc); int (*getcd)(struct mmc *mmc); int (*getwp)(struct mmc *mmc); |