mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 20:26:48 +07:00
Input: stmfts - use devm_device_add_group
instead of sysfs_create_group. Signed-off-by: Andi Shyti <andi.shyti@samsung.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
7ed802c0c0
commit
c2690bd697
@ -727,8 +727,7 @@ static int stmfts_probe(struct i2c_client *client,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = sysfs_create_group(&sdata->client->dev.kobj,
|
err = devm_device_add_group(&client->dev, &stmfts_attribute_group);
|
||||||
&stmfts_attribute_group);
|
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
@ -740,7 +739,6 @@ static int stmfts_probe(struct i2c_client *client,
|
|||||||
static int stmfts_remove(struct i2c_client *client)
|
static int stmfts_remove(struct i2c_client *client)
|
||||||
{
|
{
|
||||||
pm_runtime_disable(&client->dev);
|
pm_runtime_disable(&client->dev);
|
||||||
sysfs_remove_group(&client->dev.kobj, &stmfts_attribute_group);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user