From: Krzysztof Kozlowski Date: Wed, 26 May 2021 12:46:59 +0000 (-0400) Subject: mfd: max8997: Simplify getting of_device_id match data X-Git-Tag: v5.15~794^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b486413dd73ac900c6e3a5cda83f2e3f94cd2b2c;p=platform%2Fkernel%2Flinux-starfive.git mfd: max8997: Simplify getting of_device_id match data Use of_device_get_match_data() to make the code slightly smaller. There is also no need to wrap it in a check for CONFIG_OF, because dev.of_node will be set only with OF support. Signed-off-by: Krzysztof Kozlowski Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/max8997.c b/drivers/mfd/max8997.c index 68d8f2b9..2141de7 100644 --- a/drivers/mfd/max8997.c +++ b/drivers/mfd/max8997.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -145,11 +146,9 @@ static struct max8997_platform_data *max8997_i2c_parse_dt_pdata( static inline unsigned long max8997_i2c_get_driver_data(struct i2c_client *i2c, const struct i2c_device_id *id) { - if (IS_ENABLED(CONFIG_OF) && i2c->dev.of_node) { - const struct of_device_id *match; - match = of_match_node(max8997_pmic_dt_match, i2c->dev.of_node); - return (unsigned long)match->data; - } + if (i2c->dev.of_node) + return (unsigned long)of_device_get_match_data(&i2c->dev); + return id->driver_data; }