diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:37 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:37 +0200 |
commit | 1ecc4335eba1a264ed8ac5b180a2ffde8113f3db (patch) | |
tree | 78fd4d700008a576dc274e4946537ee455529a32 /drivers/i2c/busses/i2c-xiic.c | |
parent | a7629c70d0ffd5ea12e681f0dd168d03ff3b60ec (diff) | |
download | linux-1ecc4335eba1a264ed8ac5b180a2ffde8113f3db.tar.bz2 |
i2c: busses: drop owner assignment from platform_drivers
A platform_driver does not need to set an owner, it will be populated by the
driver core.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-xiic.c')
-rw-r--r-- | drivers/i2c/busses/i2c-xiic.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c index ade9223912d3..e60e67a5fac6 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c @@ -771,7 +771,6 @@ static struct platform_driver xiic_i2c_driver = { .probe = xiic_i2c_probe, .remove = xiic_i2c_remove, .driver = { - .owner = THIS_MODULE, .name = DRIVER_NAME, .of_match_table = of_match_ptr(xiic_of_match), }, |