diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-12-30 06:30:16 (GMT) |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-01-11 10:40:13 (GMT) |
commit | 07b0b9c00cc8f8e981df35ac4720057469a8d3c8 (patch) | |
tree | e95d69706c7d22e4cac913008d4f5948f0e398d1 /include | |
parent | 6f88a3a5d9488bc0aed5a62ca5f2a3cda4deded9 (diff) | |
download | u-boot-fsl-qoriq-07b0b9c00cc8f8e981df35ac4720057469a8d3c8.tar.xz |
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')
-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 1720955..fad12d6 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); |