Skip to content

Commit

Permalink
ks8851: Remove unneeded PM_OPS definitions
Browse files Browse the repository at this point in the history
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: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Fabio Estevam authored and David S. Miller committed Apr 16, 2013
1 parent c132cf5 commit 8ac2b3c
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions drivers/net/ethernet/micrel/ks8851.c
Original file line number Diff line number Diff line change
Expand Up @@ -1391,13 +1391,9 @@ static int ks8851_resume(struct device *dev)

return 0;
}
#endif

static SIMPLE_DEV_PM_OPS(ks8851_pm_ops, ks8851_suspend, ks8851_resume);
#define KS8851_PM_OPS (&ks8851_pm_ops)

#else
#define KS8851_PM_OPS NULL
#endif

static int ks8851_probe(struct spi_device *spi)
{
Expand Down Expand Up @@ -1536,7 +1532,7 @@ static struct spi_driver ks8851_driver = {
.driver = {
.name = "ks8851",
.owner = THIS_MODULE,
.pm = KS8851_PM_OPS,
.pm = &ks8851_pm_ops,
},
.probe = ks8851_probe,
.remove = ks8851_remove,
Expand Down

0 comments on commit 8ac2b3c

Please sign in to comment.