[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20140103160747.8153.54905.stgit@warthog.procyon.org.uk>
Date: Fri, 03 Jan 2014 16:07:47 +0000
From: David Howells <dhowells@...hat.com>
To: akpm@...ux-foundation.org
Cc: dhowells@...hat.com, Samuel Ortiz <sameo@...ux.intel.com>,
AnilKumar Ch <anilkumar@...com>, linux-kernel@...r.kernel.org
Subject: [PATCH 4/7] Fix up a pointer-integer size mismatch warning in
tps65217_probe()
Fix up the following pointer-integer size mismatch warning in tps65217_probe():
drivers/mfd/tps65217.c: In function 'tps65217_probe':
drivers/mfd/tps65217.c:173:13: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
chip_id = (unsigned int)match->data;
^
Signed-off-by: David Howells <dhowells@...hat.com>
cc: AnilKumar Ch <anilkumar@...com>
cc: Samuel Ortiz <sameo@...ux.intel.com>
---
drivers/mfd/tps65217.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mfd/tps65217.c b/drivers/mfd/tps65217.c
index b7be0b295575..66195edc0ef4 100644
--- a/drivers/mfd/tps65217.c
+++ b/drivers/mfd/tps65217.c
@@ -170,7 +170,7 @@ static int tps65217_probe(struct i2c_client *client,
"Failed to find matching dt id\n");
return -EINVAL;
}
- chip_id = (unsigned int)match->data;
+ chip_id = (unsigned int)(unsigned long)match->data;
status_off = of_property_read_bool(client->dev.of_node,
"ti,pmic-shutdown-controller");
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists