aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/lm90.c
diff options
context:
space:
mode:
authorWolfram Sang <wsa+renesas@sang-engineering.com>2019-06-10 11:51:54 +0200
committerGuenter Roeck <linux@roeck-us.net>2019-06-23 18:33:01 -0700
commite67776cc30894d2840fc0b93fc3b3647677ef0b3 (patch)
tree12e01a679ce171f2a53792fe273a0acaffedda4f /drivers/hwmon/lm90.c
parenthwmon: (asus_atk0110) no need to check return value of debugfs_create functions (diff)
downloadlinux-dev-e67776cc30894d2840fc0b93fc3b3647677ef0b3.tar.xz
linux-dev-e67776cc30894d2840fc0b93fc3b3647677ef0b3.zip
hwmon: (lm90) simplify getting the adapter of a client
We have a dedicated pointer for that, so use it. Much easier to read and less computation involved. Reported-by: Peter Rosin <peda@axentia.se> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/lm90.c')
-rw-r--r--drivers/hwmon/lm90.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c
index e562a578f20e..2ebcab8b0a9b 100644
--- a/drivers/hwmon/lm90.c
+++ b/drivers/hwmon/lm90.c
@@ -1718,7 +1718,7 @@ static int lm90_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
struct device *dev = &client->dev;
- struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
+ struct i2c_adapter *adapter = client->adapter;
struct hwmon_channel_info *info;
struct regulator *regulator;
struct device *hwmon_dev;