summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVaibhav Gupta <vaibhavgupta40@gmail.com>2020-07-17 09:34:33 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-07-19 14:23:44 +0200
commitfc1f0e67f68f78da8426632e7ff3703b93148dba (patch)
tree66984d80459c49467f7b3ba5ac08d7bc3e5966df
parentmedia: cx23885: use generic power management (diff)
downloadlinux-fc1f0e67f68f78da8426632e7ff3703b93148dba.tar.xz
linux-fc1f0e67f68f78da8426632e7ff3703b93148dba.zip
media: cx25821: use generic power management
The .suspend() and .resume() callbacks are not defined for this driver. Still, their power management structure follows the legacy framework. To bring it under the generic framework, simply remove the binding of callbacks from struct "pci_driver". Compile-tested only. Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
-rw-r--r--drivers/media/pci/cx25821/cx25821-core.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/pci/cx25821/cx25821-core.c b/drivers/media/pci/cx25821/cx25821-core.c
index 41be22ce66f3..55018d9e439f 100644
--- a/drivers/media/pci/cx25821/cx25821-core.c
+++ b/drivers/media/pci/cx25821/cx25821-core.c
@@ -1374,9 +1374,6 @@ static struct pci_driver cx25821_pci_driver = {
.id_table = cx25821_pci_tbl,
.probe = cx25821_initdev,
.remove = cx25821_finidev,
- /* TODO */
- .suspend = NULL,
- .resume = NULL,
};
static int __init cx25821_init(void)