diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-03-30 09:51:04 +0900 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2016-05-01 23:38:14 +0200 |
commit | dfeb87df484d609aadef810dbb819830f5f9052a (patch) | |
tree | 9ada2118a185925f78712bcaa5d189bb0c7dbc11 /drivers/nfc/st-nci | |
parent | 71c08eac2e88b01ecbfba1b1a485a748a4632727 (diff) | |
download | linux-dfeb87df484d609aadef810dbb819830f5f9052a.tar.gz linux-dfeb87df484d609aadef810dbb819830f5f9052a.tar.bz2 linux-dfeb87df484d609aadef810dbb819830f5f9052a.zip |
nfc: Drop owner assignment from i2c_driver
i2c_driver does not need to set an owner because i2c_register_driver()
will set it.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc/st-nci')
-rw-r--r-- | drivers/nfc/st-nci/i2c.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/nfc/st-nci/i2c.c b/drivers/nfc/st-nci/i2c.c index 8a56b5c6e4c4..925dbeef74db 100644 --- a/drivers/nfc/st-nci/i2c.c +++ b/drivers/nfc/st-nci/i2c.c @@ -416,7 +416,6 @@ MODULE_DEVICE_TABLE(of, of_st_nci_i2c_match); static struct i2c_driver st_nci_i2c_driver = { .driver = { - .owner = THIS_MODULE, .name = ST_NCI_I2C_DRIVER_NAME, .of_match_table = of_match_ptr(of_st_nci_i2c_match), .acpi_match_table = ACPI_PTR(st_nci_i2c_acpi_match), |