Commit 599ad5ac authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Rob Herring

of: Drop owner assignment from platform and i2c driver

platform_driver and i2c_driver do not need to set an owner because core
will set it.
Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 3b6e644e
...@@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = { ...@@ -979,7 +979,6 @@ static struct platform_driver unittest_driver = {
.remove = unittest_remove, .remove = unittest_remove,
.driver = { .driver = {
.name = "unittest", .name = "unittest",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(unittest_match), .of_match_table = of_match_ptr(unittest_match),
}, },
}; };
...@@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = { ...@@ -1666,7 +1665,6 @@ static const struct i2c_device_id unittest_i2c_dev_id[] = {
static struct i2c_driver unittest_i2c_dev_driver = { static struct i2c_driver unittest_i2c_dev_driver = {
.driver = { .driver = {
.name = "unittest-i2c-dev", .name = "unittest-i2c-dev",
.owner = THIS_MODULE,
}, },
.probe = unittest_i2c_dev_probe, .probe = unittest_i2c_dev_probe,
.remove = unittest_i2c_dev_remove, .remove = unittest_i2c_dev_remove,
...@@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = { ...@@ -1761,7 +1759,6 @@ static const struct i2c_device_id unittest_i2c_mux_id[] = {
static struct i2c_driver unittest_i2c_mux_driver = { static struct i2c_driver unittest_i2c_mux_driver = {
.driver = { .driver = {
.name = "unittest-i2c-mux", .name = "unittest-i2c-mux",
.owner = THIS_MODULE,
}, },
.probe = unittest_i2c_mux_probe, .probe = unittest_i2c_mux_probe,
.remove = unittest_i2c_mux_remove, .remove = unittest_i2c_mux_remove,
......
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