提交 e2fe9066 编写于 作者: K Kylene Hall 提交者: Linus Torvalds

[PATCH] tpm: use to_pci_dev

Changes the container_of calls to 'to_pci_dev' as suggested previously.
Signed-off-by: NKylene Hall <kjhall@us.ibm.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 fe3fd483
......@@ -218,7 +218,7 @@ static ssize_t show_pcrs(struct device *dev, struct device_attribute *attr, char
char *str = buf;
struct tpm_chip *chip =
pci_get_drvdata(container_of(dev, struct pci_dev, dev));
pci_get_drvdata(to_pci_dev(dev));
if (chip == NULL)
return -ENODEV;
......@@ -262,7 +262,7 @@ static ssize_t show_pubek(struct device *dev, struct device_attribute *attr, cha
char *str = buf;
struct tpm_chip *chip =
pci_get_drvdata(container_of(dev, struct pci_dev, dev));
pci_get_drvdata(to_pci_dev(dev));
if (chip == NULL)
return -ENODEV;
......@@ -344,7 +344,7 @@ static ssize_t show_caps(struct device *dev, struct device_attribute *attr, char
char *str = buf;
struct tpm_chip *chip =
pci_get_drvdata(container_of(dev, struct pci_dev, dev));
pci_get_drvdata(to_pci_dev(dev));
if (chip == NULL)
return -ENODEV;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册