diff options
author | Lee Jones <lee.jones@linaro.org> | 2014-01-23 14:47:13 +0000 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-02-19 13:30:27 +0000 |
commit | 7f8279ce04589a2e0f29b865c3af40609b0ea08d (patch) | |
tree | 20f722237443971b80eae9bfdf2f42298226eb3d | |
parent | 8bace2d5b4baa0f60b6094b53aeb79515ec94e4a (diff) | |
download | linux-rt-7f8279ce04589a2e0f29b865c3af40609b0ea08d.tar.gz |
mfd: wm8994-core: Naturalise cross-architecture discrepancies
If we compile the WM8994 for a 64bit architecture we receive the following
warnings:
drivers/mfd/wm8994-core.c: In function ‘wm8994_i2c_probe’:
drivers/mfd/wm8994-core.c:639:19:
warning: cast from pointer to integer of different size
wm8994->type = (int)of_id->data;
^
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/wm8994-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/wm8994-core.c b/drivers/mfd/wm8994-core.c index ba04f1bc70eb..e6fab94e2c8a 100644 --- a/drivers/mfd/wm8994-core.c +++ b/drivers/mfd/wm8994-core.c @@ -636,7 +636,7 @@ static int wm8994_i2c_probe(struct i2c_client *i2c, if (i2c->dev.of_node) { of_id = of_match_device(wm8994_of_match, &i2c->dev); if (of_id) - wm8994->type = (int)of_id->data; + wm8994->type = (enum wm8994_type)of_id->data; } else { wm8994->type = id->driver_data; } |