mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 22:46:42 +07:00
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: Chuhong Yuan <hslester96@gmail.com> Link: https://lore.kernel.org/r/20190724131758.1764-1-hslester96@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
95604220ce
commit
76b4106c4b
@ -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)
|
|||||||
#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);
|
||||||
|
Loading…
Reference in New Issue
Block a user