]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
tpm: Convert tpm_find_get_ops() to use tpm_default_chip()
authorStefan Berger <stefanb@linux.vnet.ibm.com>
Tue, 26 Jun 2018 19:09:31 +0000 (15:09 -0400)
committerJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Sat, 28 Jul 2018 14:03:11 +0000 (17:03 +0300)
Convert tpm_find_get_ops() to use tpm_default_chip() in case no chip
is passed in.

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Tested-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
drivers/char/tpm/tpm-chip.c

index f551061262c930629ea87d04dffda8a42b929b3d..46caadca916a0a0d3e23b35ca53d3c87142dc97e 100644 (file)
@@ -124,29 +124,23 @@ EXPORT_SYMBOL_GPL(tpm_default_chip);
  */
 struct tpm_chip *tpm_find_get_ops(struct tpm_chip *chip)
 {
-       struct tpm_chip *res = NULL;
-       int chip_num = 0;
-       int chip_prev;
-
-       mutex_lock(&idr_lock);
+       int rc;
 
-       if (!chip) {
-               do {
-                       chip_prev = chip_num;
-                       chip = idr_get_next(&dev_nums_idr, &chip_num);
-                       if (chip && !tpm_try_get_ops(chip)) {
-                               res = chip;
-                               break;
-                       }
-               } while (chip_prev != chip_num);
-       } else {
+       if (chip) {
                if (!tpm_try_get_ops(chip))
-                       res = chip;
+                       return chip;
+               return NULL;
        }
 
-       mutex_unlock(&idr_lock);
-
-       return res;
+       chip = tpm_default_chip();
+       if (!chip)
+               return NULL;
+       rc = tpm_try_get_ops(chip);
+       /* release additional reference we got from tpm_default_chip() */
+       put_device(&chip->dev);
+       if (rc)
+               return NULL;
+       return chip;
 }
 
 /**