From: Masahiro Yamada Date: Fri, 24 Nov 2017 16:24:50 +0000 (+0900) Subject: mmc: tmio: change bus_shift to unsigned int X-Git-Tag: v4.16-rc1~189^2~34 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c4ba0e4abda39fb1ca81683be068b4556b2680d4;p=users%2Fjedix%2Flinux-maple.git mmc: tmio: change bus_shift to unsigned int Sane values for bus_shift are: 0 - for 16 bit bus 1 - for 32 bit bus 2 - for 64 bit bus "unsigned long" is too much. Signed-off-by: Masahiro Yamada Reviewed-by: Wolfram Sang Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/tmio_mmc.h b/drivers/mmc/host/tmio_mmc.h index a099fde27026..15537c85c51a 100644 --- a/drivers/mmc/host/tmio_mmc.h +++ b/drivers/mmc/host/tmio_mmc.h @@ -139,7 +139,7 @@ struct tmio_mmc_host { struct scatterlist *sg_orig; unsigned int sg_len; unsigned int sg_off; - unsigned long bus_shift; + unsigned int bus_shift; struct platform_device *pdev; struct tmio_mmc_data *pdata;