Commit 7aa87db5 authored by Vaibhav Gupta's avatar Vaibhav Gupta Committed by Mauro Carvalho Chehab
Browse files

media: saa7164: 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: default avatarVaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent d20dcbb2
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1539,9 +1539,6 @@ static struct pci_driver saa7164_pci_driver = {
	.id_table = saa7164_pci_tbl,
	.probe    = saa7164_initdev,
	.remove   = saa7164_finidev,
	/* TODO */
	.suspend  = NULL,
	.resume   = NULL,
};

static int __init saa7164_init(void)