Commit 09c14459 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Thierry Reding

pwm: pca9685: Drop owner assignment

i2c_driver does not need to set an owner because i2c_register_driver()
will set it.
Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
parent 6e146f5c
...@@ -285,7 +285,6 @@ MODULE_DEVICE_TABLE(of, pca9685_dt_ids); ...@@ -285,7 +285,6 @@ MODULE_DEVICE_TABLE(of, pca9685_dt_ids);
static struct i2c_driver pca9685_i2c_driver = { static struct i2c_driver pca9685_i2c_driver = {
.driver = { .driver = {
.name = "pca9685-pwm", .name = "pca9685-pwm",
.owner = THIS_MODULE,
.of_match_table = pca9685_dt_ids, .of_match_table = pca9685_dt_ids,
}, },
.probe = pca9685_pwm_probe, .probe = pca9685_pwm_probe,
......
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