Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2998b02b authored by Winkler, Tomas's avatar Winkler, Tomas Committed by Jarkko Sakkinen
Browse files

tmp: use pdev for parent device in tpm_chip_alloc



The tpm stack uses pdev name convention for the parent device.
Fix that also in tpm_chip_alloc().

Fixes: 3897cd9c ("tpm: Split out the devm stuff from tpmm_chip_alloc")'
Signed-off-by: default avatarTomas Winkler <tomas.winkler@intel.com>
Reviewed-by: default avatarJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Tested-by: default avatarJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
Signed-off-by: default avatarJarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
parent 794c6e10
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -141,7 +141,7 @@ static void tpm_dev_release(struct device *dev)
 * Allocates a new struct tpm_chip instance and assigns a free
 * Allocates a new struct tpm_chip instance and assigns a free
 * device number for it. Must be paired with put_device(&chip->dev).
 * device number for it. Must be paired with put_device(&chip->dev).
 */
 */
struct tpm_chip *tpm_chip_alloc(struct device *dev,
struct tpm_chip *tpm_chip_alloc(struct device *pdev,
				const struct tpm_class_ops *ops)
				const struct tpm_class_ops *ops)
{
{
	struct tpm_chip *chip;
	struct tpm_chip *chip;
@@ -160,7 +160,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev,
	rc = idr_alloc(&dev_nums_idr, NULL, 0, TPM_NUM_DEVICES, GFP_KERNEL);
	rc = idr_alloc(&dev_nums_idr, NULL, 0, TPM_NUM_DEVICES, GFP_KERNEL);
	mutex_unlock(&idr_lock);
	mutex_unlock(&idr_lock);
	if (rc < 0) {
	if (rc < 0) {
		dev_err(dev, "No available tpm device numbers\n");
		dev_err(pdev, "No available tpm device numbers\n");
		kfree(chip);
		kfree(chip);
		return ERR_PTR(rc);
		return ERR_PTR(rc);
	}
	}
@@ -170,7 +170,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev,


	chip->dev.class = tpm_class;
	chip->dev.class = tpm_class;
	chip->dev.release = tpm_dev_release;
	chip->dev.release = tpm_dev_release;
	chip->dev.parent = dev;
	chip->dev.parent = pdev;
	chip->dev.groups = chip->groups;
	chip->dev.groups = chip->groups;


	if (chip->dev_num == 0)
	if (chip->dev_num == 0)
@@ -182,7 +182,7 @@ struct tpm_chip *tpm_chip_alloc(struct device *dev,
	if (rc)
	if (rc)
		goto out;
		goto out;


	if (!dev)
	if (!pdev)
		chip->flags |= TPM_CHIP_FLAG_VIRTUAL;
		chip->flags |= TPM_CHIP_FLAG_VIRTUAL;


	cdev_init(&chip->cdev, &tpm_fops);
	cdev_init(&chip->cdev, &tpm_fops);