diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:21 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:21 +0200 |
commit | 05e6cc68afbe445382ab201b2b29ff0fcddec0be (patch) | |
tree | e308877157a72ec434c9cc4b3dce04eb4da1915b /drivers/char/tpm/tpm_tis.c | |
parent | 394b3d078dfe0e7fbd4507cb2382de6736f70cb2 (diff) | |
download | linux-05e6cc68afbe445382ab201b2b29ff0fcddec0be.tar.gz linux-05e6cc68afbe445382ab201b2b29ff0fcddec0be.tar.bz2 linux-05e6cc68afbe445382ab201b2b29ff0fcddec0be.zip |
char: tpm: 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/char/tpm/tpm_tis.c')
-rw-r--r-- | drivers/char/tpm/tpm_tis.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index 2c46734b266d..6f1985496112 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c @@ -837,7 +837,6 @@ MODULE_PARM_DESC(hid, "Set additional specific HID for this driver to probe"); static struct platform_driver tis_drv = { .driver = { .name = "tpm_tis", - .owner = THIS_MODULE, .pm = &tpm_tis_pm, }, }; |