summaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorVaibhav Gupta <vaibhavgupta40@gmail.com>2020-08-30 11:44:14 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-09-27 11:24:28 +0200
commite8897acb898d4d345edab76bbd5e50b60580909a (patch)
tree2d2f2c9685115437d930203dcb3982c29dc43dbf /drivers/media
parenta8be80053ea74bd9c3f9a3810e93b802236d6498 (diff)
downloadlinux-stable-e8897acb898d4d345edab76bbd5e50b60580909a.tar.gz
linux-stable-e8897acb898d4d345edab76bbd5e50b60580909a.tar.bz2
linux-stable-e8897acb898d4d345edab76bbd5e50b60580909a.zip
media: netup_unidvb: drop initialization of PM pointers
The .suspend() and .resume() callbacks are not defined for this driver. Thus, just the unlisting of PM pointers in the struct initializer will make no change in its behavior. Still unlisting is necessary so as to get rid of .suspend and .resume pointers as they are part of the legacy framework and should not be used in the driver code explicitly. Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com> Signed-off-by: Sean Young <sean@mess.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/pci/netup_unidvb/netup_unidvb_core.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
index 80a7c41baa90..6f3125c2d097 100644
--- a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
+++ b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
@@ -1016,8 +1016,6 @@ static struct pci_driver netup_unidvb_pci_driver = {
.id_table = netup_unidvb_pci_tbl,
.probe = netup_unidvb_initdev,
.remove = netup_unidvb_finidev,
- .suspend = NULL,
- .resume = NULL,
};
module_pci_driver(netup_unidvb_pci_driver);