]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
serial: pch_uart: use generic power management
authorVaibhav Gupta <vaibhavgupta40@gmail.com>
Mon, 20 Jul 2020 12:04:15 +0000 (17:34 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Jul 2020 18:04:54 +0000 (20:04 +0200)
commit23a98b6eb808e2080d6d4acba931b5db3aac9a16
tree515310f261a3e70b831cdd3b1d62898886860f73
parentaaad2940c754ee186609f5f46cb1ec2ff3072c3f
serial: pch_uart: use generic power management

Drivers using legacy PM have to manage PCI states and device's PM states
themselves. They also need to take care of configuration registers.

With improved and powerful support of generic PM, PCI Core takes care of
above mentioned, device-independent, jobs.

This driver makes use of PCI helper functions like
pci_save/restore_state(), pci_enable_device() and pci_set_power_state()
to do required operations. In generic mode, they are no longer needed.

Change function parameter in both .suspend() and .resume() to
"struct device*" type. Use dev_get_drvdata() to get drv data.

Compile-tested only.

Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Link: https://lore.kernel.org/r/20200720120414.399961-1-vaibhavgupta40@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/pch_uart.c