Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42df36a6 authored by Fabio Estevam's avatar Fabio Estevam Committed by David S. Miller
Browse files

tg3: Remove unneeded PM_OPS definitions



SIMPLE_DEV_PM_OPS macro can handle !CONFIG_PM_SLEEP case nicely, so there is no
need to define PM_OPS for both CONFIG_PM_SLEEP and !CONFIG_PM_SLEEP cases.

Remove the unneeded definitions.

Cc: Nithin Nayak Sujir <nsujir@broadcom.com>
Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7b7a2bbb
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -17533,15 +17533,9 @@ static int tg3_resume(struct device *device)

	return err;
}
#endif /* CONFIG_PM_SLEEP */

static SIMPLE_DEV_PM_OPS(tg3_pm_ops, tg3_suspend, tg3_resume);
#define TG3_PM_OPS (&tg3_pm_ops)

#else

#define TG3_PM_OPS NULL

#endif /* CONFIG_PM_SLEEP */

/**
 * tg3_io_error_detected - called when PCI error is detected
@@ -17689,7 +17683,7 @@ static struct pci_driver tg3_driver = {
	.probe		= tg3_init_one,
	.remove		= tg3_remove_one,
	.err_handler	= &tg3_err_handler,
	.driver.pm	= TG3_PM_OPS,
	.driver.pm	= &tg3_pm_ops,
};

static int __init tg3_init(void)