diff options
| author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:42 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 14:08:24 -0500 |
| commit | afc6d36912f3f3404fcc1dd2234d9028706a9b6a (patch) | |
| tree | fa546fbf700e94bdeaaacf9e38b174394056222c /drivers/char | |
| parent | 610141ee651cee2cd27584434aa9dd9d967f0089 (diff) | |
tpm: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Rajiv Andrade <mail@srajiv.net>
Cc: Marcel Selhorst <tpmdd@selhorst.net>
Cc: Sirrix AG <tpmdd@sirrix.com>
Acked-by: Kent Yoder <key@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
| -rw-r--r-- | drivers/char/tpm/tpm_i2c_infineon.c | 4 | ||||
| -rw-r--r-- | drivers/char/tpm/tpm_ibmvtpm.c | 2 | ||||
| -rw-r--r-- | drivers/char/tpm/tpm_infineon.c | 2 | ||||
| -rw-r--r-- | drivers/char/tpm/tpm_tis.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/drivers/char/tpm/tpm_i2c_infineon.c b/drivers/char/tpm/tpm_i2c_infineon.c index 5a831aec9d4..bcdb078c1b8 100644 --- a/drivers/char/tpm/tpm_i2c_infineon.c +++ b/drivers/char/tpm/tpm_i2c_infineon.c | |||
| @@ -555,7 +555,7 @@ static struct tpm_vendor_specific tpm_tis_i2c = { | |||
| 555 | .miscdev.fops = &tis_ops, | 555 | .miscdev.fops = &tis_ops, |
| 556 | }; | 556 | }; |
| 557 | 557 | ||
| 558 | static int __devinit tpm_tis_i2c_init(struct device *dev) | 558 | static int tpm_tis_i2c_init(struct device *dev) |
| 559 | { | 559 | { |
| 560 | u32 vendor; | 560 | u32 vendor; |
| 561 | int rc = 0; | 561 | int rc = 0; |
| @@ -632,7 +632,7 @@ static const struct i2c_device_id tpm_tis_i2c_table[] = { | |||
| 632 | MODULE_DEVICE_TABLE(i2c, tpm_tis_i2c_table); | 632 | MODULE_DEVICE_TABLE(i2c, tpm_tis_i2c_table); |
| 633 | static SIMPLE_DEV_PM_OPS(tpm_tis_i2c_ops, tpm_pm_suspend, tpm_pm_resume); | 633 | static SIMPLE_DEV_PM_OPS(tpm_tis_i2c_ops, tpm_pm_suspend, tpm_pm_resume); |
| 634 | 634 | ||
| 635 | static int __devinit tpm_tis_i2c_probe(struct i2c_client *client, | 635 | static int tpm_tis_i2c_probe(struct i2c_client *client, |
| 636 | const struct i2c_device_id *id) | 636 | const struct i2c_device_id *id) |
| 637 | { | 637 | { |
| 638 | int rc; | 638 | int rc; |
diff --git a/drivers/char/tpm/tpm_ibmvtpm.c b/drivers/char/tpm/tpm_ibmvtpm.c index efc4ab36a9d..d9ba6157da9 100644 --- a/drivers/char/tpm/tpm_ibmvtpm.c +++ b/drivers/char/tpm/tpm_ibmvtpm.c | |||
| @@ -602,7 +602,7 @@ static void ibmvtpm_tasklet(void *data) | |||
| 602 | * 0 - Success | 602 | * 0 - Success |
| 603 | * Non-zero - Failure | 603 | * Non-zero - Failure |
| 604 | */ | 604 | */ |
| 605 | static int __devinit tpm_ibmvtpm_probe(struct vio_dev *vio_dev, | 605 | static int tpm_ibmvtpm_probe(struct vio_dev *vio_dev, |
| 606 | const struct vio_device_id *id) | 606 | const struct vio_device_id *id) |
| 607 | { | 607 | { |
| 608 | struct ibmvtpm_dev *ibmvtpm; | 608 | struct ibmvtpm_dev *ibmvtpm; |
diff --git a/drivers/char/tpm/tpm_infineon.c b/drivers/char/tpm/tpm_infineon.c index 3251a44e8ce..8d9ff73faac 100644 --- a/drivers/char/tpm/tpm_infineon.c +++ b/drivers/char/tpm/tpm_infineon.c | |||
| @@ -415,7 +415,7 @@ static const struct pnp_device_id tpm_inf_pnp_tbl[] = { | |||
| 415 | 415 | ||
| 416 | MODULE_DEVICE_TABLE(pnp, tpm_inf_pnp_tbl); | 416 | MODULE_DEVICE_TABLE(pnp, tpm_inf_pnp_tbl); |
| 417 | 417 | ||
| 418 | static int __devinit tpm_inf_pnp_probe(struct pnp_dev *dev, | 418 | static int tpm_inf_pnp_probe(struct pnp_dev *dev, |
| 419 | const struct pnp_device_id *dev_id) | 419 | const struct pnp_device_id *dev_id) |
| 420 | { | 420 | { |
| 421 | int rc = 0; | 421 | int rc = 0; |
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index 6bdf2671254..253161c302b 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c | |||
| @@ -729,7 +729,7 @@ static void tpm_tis_reenable_interrupts(struct tpm_chip *chip) | |||
| 729 | #endif | 729 | #endif |
| 730 | 730 | ||
| 731 | #ifdef CONFIG_PNP | 731 | #ifdef CONFIG_PNP |
| 732 | static int __devinit tpm_tis_pnp_init(struct pnp_dev *pnp_dev, | 732 | static int tpm_tis_pnp_init(struct pnp_dev *pnp_dev, |
| 733 | const struct pnp_device_id *pnp_id) | 733 | const struct pnp_device_id *pnp_id) |
| 734 | { | 734 | { |
| 735 | resource_size_t start, len; | 735 | resource_size_t start, len; |
