diff options
author | Vaibhav Gupta <vaibhavgupta40@gmail.com> | 2020-07-20 13:27:01 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-08-06 12:26:09 +0300 |
commit | 7aa87db5b81b0281c7493ab58e4f702525e85fe4 (patch) | |
tree | b8e71de9f17306a246d4102fdc3c621a22e0635b /drivers/media/pci | |
parent | d20dcbb2ba45d8b7fa4a9cd67af8b42f1968e4a7 (diff) | |
download | linux-7aa87db5b81b0281c7493ab58e4f702525e85fe4.tar.xz |
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: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/pci')
-rw-r--r-- | drivers/media/pci/saa7164/saa7164-core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/pci/saa7164/saa7164-core.c b/drivers/media/pci/saa7164/saa7164-core.c index 126d085be9a7..4b637891b79a 100644 --- a/drivers/media/pci/saa7164/saa7164-core.c +++ b/drivers/media/pci/saa7164/saa7164-core.c @@ -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) |