提交 76b4106c 编写于 作者: C Chuhong Yuan 提交者: Greg Kroah-Hartman

serial: 8250: Use dev_get_drvdata where possible

Instead of using to_pci_dev + pci_get_drvdata,
use dev_get_drvdata to make code simpler.
Signed-off-by: NChuhong Yuan <hslester96@gmail.com>
Link: https://lore.kernel.org/r/20190724131758.1764-1-hslester96@gmail.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 95604220
...@@ -561,8 +561,7 @@ static int __maybe_unused exar_suspend(struct device *dev) ...@@ -561,8 +561,7 @@ static int __maybe_unused exar_suspend(struct device *dev)
static int __maybe_unused exar_resume(struct device *dev) static int __maybe_unused exar_resume(struct device *dev)
{ {
struct pci_dev *pcidev = to_pci_dev(dev); struct exar8250 *priv = dev_get_drvdata(dev);
struct exar8250 *priv = pci_get_drvdata(pcidev);
unsigned int i; unsigned int i;
for (i = 0; i < priv->nr; i++) for (i = 0; i < priv->nr; i++)
......
...@@ -3859,8 +3859,7 @@ static void pciserial_remove_one(struct pci_dev *dev) ...@@ -3859,8 +3859,7 @@ static void pciserial_remove_one(struct pci_dev *dev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int pciserial_suspend_one(struct device *dev) static int pciserial_suspend_one(struct device *dev)
{ {
struct pci_dev *pdev = to_pci_dev(dev); struct serial_private *priv = dev_get_drvdata(dev);
struct serial_private *priv = pci_get_drvdata(pdev);
if (priv) if (priv)
pciserial_suspend_ports(priv); pciserial_suspend_ports(priv);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册