OSDN Git Service

char: tpm: drop owner assignment from platform_drivers
authorWolfram Sang <wsa@the-dreams.de>
Mon, 20 Oct 2014 14:20:21 +0000 (16:20 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Mon, 20 Oct 2014 14:20:21 +0000 (16:20 +0200)
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>
drivers/char/tpm/tpm_atmel.c
drivers/char/tpm/tpm_nsc.c
drivers/char/tpm/tpm_tis.c

index 6069d13..435c8b9 100644 (file)
@@ -152,7 +152,6 @@ static SIMPLE_DEV_PM_OPS(tpm_atml_pm, tpm_pm_suspend, tpm_pm_resume);
 static struct platform_driver atml_drv = {
        .driver = {
                .name = "tpm_atmel",
-               .owner          = THIS_MODULE,
                .pm             = &tpm_atml_pm,
        },
 };
index 3179ec9..4d0a17e 100644 (file)
@@ -258,7 +258,6 @@ static SIMPLE_DEV_PM_OPS(tpm_nsc_pm, tpm_pm_suspend, tpm_pm_resume);
 static struct platform_driver nsc_drv = {
        .driver          = {
                .name    = "tpm_nsc",
-               .owner   = THIS_MODULE,
                .pm      = &tpm_nsc_pm,
        },
 };
index 2c46734..6f19854 100644 (file)
@@ -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,
        },
 };