From: Vaibhav Gupta Date: Tue, 28 Jul 2020 04:28:10 +0000 (+0530) Subject: farsync: use generic power management X-Git-Tag: v5.9-rc1~133^2~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f21bbd63308f677f0f32471cfa7dcdae17fd14da;p=thirdparty%2Fkernel%2Flinux.git farsync: 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". Change code indentation from space to tab in "struct pci_driver". Signed-off-by: Vaibhav Gupta Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/farsync.c b/drivers/net/wan/farsync.c index 0196b7fd130d6..fe4650260bc6b 100644 --- a/drivers/net/wan/farsync.c +++ b/drivers/net/wan/farsync.c @@ -2636,12 +2636,10 @@ fst_remove_one(struct pci_dev *pdev) } static struct pci_driver fst_driver = { - .name = FST_NAME, - .id_table = fst_pci_dev_id, - .probe = fst_add_one, - .remove = fst_remove_one, - .suspend = NULL, - .resume = NULL, + .name = FST_NAME, + .id_table = fst_pci_dev_id, + .probe = fst_add_one, + .remove = fst_remove_one, }; static int __init