* [PATCH] spi: fix pointer-integer size mismatch warning
@ 2014-02-04 6:58 SeongJae Park
2014-02-04 11:17 ` Mark Brown
0 siblings, 1 reply; 2+ messages in thread
From: SeongJae Park @ 2014-02-04 6:58 UTC (permalink / raw)
To: broonie; +Cc: linux-spi, linux-kernel, SeongJae Park
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: SeongJae Park <sj38.park@gmail.com>
---
drivers/spi/spi-gpio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/spi/spi-gpio.c b/drivers/spi/spi-gpio.c
index cfc9fb3..406bbd7 100644
--- a/drivers/spi/spi-gpio.c
+++ b/drivers/spi/spi-gpio.c
@@ -249,7 +249,7 @@ static int spi_gpio_setup(struct spi_device *spi)
/*
* ... 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) {
--
1.8.3.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] spi: fix pointer-integer size mismatch warning
2014-02-04 6:58 [PATCH] spi: fix pointer-integer size mismatch warning SeongJae Park
@ 2014-02-04 11:17 ` Mark Brown
0 siblings, 0 replies; 2+ messages in thread
From: Mark Brown @ 2014-02-04 11:17 UTC (permalink / raw)
To: SeongJae Park; +Cc: linux-spi, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 385 bytes --]
On Tue, Feb 04, 2014 at 03:58:09PM +0900, SeongJae Park wrote:
> 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;
> ^
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-02-04 11:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-04 6:58 [PATCH] spi: fix pointer-integer size mismatch warning SeongJae Park
2014-02-04 11:17 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®