projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cae02b7
)
mfd: intel_soc_pmic_crc: Convert to use i2c_get/set_clientdata()
author
Andy Shevchenko
<andriy.shevchenko@linux.intel.com>
Mon, 1 Aug 2022 11:42:06 +0000
(14:42 +0300)
committer
Lee Jones
<lee@kernel.org>
Wed, 28 Sep 2022 15:09:49 +0000
(16:09 +0100)
We have the specific helpers for I2C device to set and get its driver data.
Convert driver to use them instead of open coded variants.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link:
https://lore.kernel.org/r/20220801114211.36267-5-andriy.shevchenko@linux.intel.com
drivers/mfd/intel_soc_pmic_crc.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/intel_soc_pmic_crc.c
b/drivers/mfd/intel_soc_pmic_crc.c
index 64cdd435f8c5722ab116e0ddbf26d7f40d53ff05..082007485cdaaf0ceacfc35ca46be5ad5b237133 100644
(file)
--- a/
drivers/mfd/intel_soc_pmic_crc.c
+++ b/
drivers/mfd/intel_soc_pmic_crc.c
@@
-181,7
+181,7
@@
static int intel_soc_pmic_i2c_probe(struct i2c_client *i2c,
if (!pmic)
return -ENOMEM;
-
dev_set_drvdata(dev
, pmic);
+
i2c_set_clientdata(i2c
, pmic);
pmic->regmap = devm_regmap_init_i2c(i2c, config->regmap_config);
if (IS_ERR(pmic->regmap))
@@
-227,7
+227,7
@@
static int intel_soc_pmic_i2c_remove(struct i2c_client *i2c)
static void intel_soc_pmic_shutdown(struct i2c_client *i2c)
{
- struct intel_soc_pmic *pmic =
dev_get_drvdata(&i2c->dev
);
+ struct intel_soc_pmic *pmic =
i2c_get_clientdata(i2c
);
disable_irq(pmic->irq);