Commit e1bde3b1 authored by SeongJae Park's avatar SeongJae Park Committed by Mark Brown

spi: fix pointer-integer size mismatch warning

Fix the pointer-integer size mismatch warning below:
	drivers/spi/spi-gpio.c: In function ‘spi_gpio_setup’:
	drivers/spi/spi-gpio.c:252:8: warning: cast from pointer to integer of
			different size [-Wpointer-to-int-cast]
	   cs = (unsigned int) spi->controller_data;
	        ^
Signed-off-by: default avatarSeongJae Park <sj38.park@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 38dbfb59
...@@ -250,7 +250,7 @@ static int spi_gpio_setup(struct spi_device *spi) ...@@ -250,7 +250,7 @@ static int spi_gpio_setup(struct spi_device *spi)
/* /*
* ... otherwise, take it from spi->controller_data * ... otherwise, take it from spi->controller_data
*/ */
cs = (unsigned int) spi->controller_data; cs = (unsigned int)(uintptr_t) spi->controller_data;
} }
if (!spi->controller_state) { if (!spi->controller_state) {
......
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