diff options
author | James Morris <james.l.morris@oracle.com> | 2012-10-11 18:40:09 +0800 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2012-10-11 18:40:09 +0800 |
commit | bb95a0d73bb69d73c16d32c10a0c31a32abddb03 (patch) | |
tree | 1ed36ec9effac9185636446fd445b11db6a15ad7 /drivers/char/tpm/tpm.c | |
parent | 12250d843e8489ee00b5b7726da855e51694e792 (diff) | |
parent | 1631cfb7cee28388b04aef6c0a73050f6fd76e4d (diff) |
Merge branch 'tpmdd-fixes-v3.6' of git://github.com/shpedoikal/linux into for-linus
Diffstat (limited to 'drivers/char/tpm/tpm.c')
-rw-r--r-- | drivers/char/tpm/tpm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm.c index f26afdb1a70..b429f1ea1b9 100644 --- a/drivers/char/tpm/tpm.c +++ b/drivers/char/tpm/tpm.c @@ -1259,6 +1259,7 @@ void tpm_remove_hardware(struct device *dev) misc_deregister(&chip->vendor.miscdev); sysfs_remove_group(&dev->kobj, chip->vendor.attr_group); + tpm_remove_ppi(&dev->kobj); tpm_bios_log_teardown(chip->bios_dir); /* write it this way to be explicit (chip->dev == dev) */ @@ -1476,7 +1477,7 @@ struct tpm_chip *tpm_register_hardware(struct device *dev, goto put_device; } - if (sys_add_ppi(&dev->kobj)) { + if (tpm_add_ppi(&dev->kobj)) { misc_deregister(&chip->vendor.miscdev); goto put_device; } |