Commit eb108c36 authored by Matti Vaittinen's avatar Matti Vaittinen Committed by Mark Brown

regulator: bd718xx: fix build warning on x86_64

Casting address to unsigned int causes a warning on some 64 bit
architectures. Fix the cast.
Signed-off-by: default avatarMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 2ece646c
...@@ -98,7 +98,7 @@ static int bd718xx_i2c_probe(struct i2c_client *i2c, ...@@ -98,7 +98,7 @@ static int bd718xx_i2c_probe(struct i2c_client *i2c,
return -ENOMEM; return -ENOMEM;
bd718xx->chip_irq = i2c->irq; bd718xx->chip_irq = i2c->irq;
bd718xx->chip_type = (unsigned int) bd718xx->chip_type = (unsigned int)(uintptr_t)
of_device_get_match_data(&i2c->dev); of_device_get_match_data(&i2c->dev);
bd718xx->dev = &i2c->dev; bd718xx->dev = &i2c->dev;
dev_set_drvdata(&i2c->dev, bd718xx); dev_set_drvdata(&i2c->dev, bd718xx);
......
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