Skip to content
Permalink
Browse files
i2c: mpc: Remove CONFIG_PM_SLEEP ifdeffery
Use __maybe_unused for the suspend()/resume() hooks and get rid of
the CONFIG_PM_SLEEP ifdeffery to improve the code.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  • Loading branch information
andy-shev authored and intel-lab-lkp committed Apr 13, 2021
1 parent 9976344 commit 31fed803b49f17742a0bfa9fb3940b5bc487e4dd
Showing 1 changed file with 2 additions and 10 deletions.
@@ -66,9 +66,7 @@ struct mpc_i2c {
struct i2c_adapter adap;
int irq;
u32 real_clk;
#ifdef CONFIG_PM_SLEEP
u8 fdr, dfsrr;
#endif
struct clk *clk_per;
};

@@ -761,8 +759,7 @@ static int fsl_i2c_remove(struct platform_device *op)
return 0;
};

#ifdef CONFIG_PM_SLEEP
static int mpc_i2c_suspend(struct device *dev)
static int __maybe_unused mpc_i2c_suspend(struct device *dev)
{
struct mpc_i2c *i2c = dev_get_drvdata(dev);

@@ -772,7 +769,7 @@ static int mpc_i2c_suspend(struct device *dev)
return 0;
}

static int mpc_i2c_resume(struct device *dev)
static int __maybe_unused mpc_i2c_resume(struct device *dev)
{
struct mpc_i2c *i2c = dev_get_drvdata(dev);

@@ -781,12 +778,7 @@ static int mpc_i2c_resume(struct device *dev)

return 0;
}

static SIMPLE_DEV_PM_OPS(mpc_i2c_pm_ops, mpc_i2c_suspend, mpc_i2c_resume);
#define MPC_I2C_PM_OPS (&mpc_i2c_pm_ops)
#else
#define MPC_I2C_PM_OPS NULL
#endif

static const struct mpc_i2c_data mpc_i2c_data_512x = {
.setup = mpc_i2c_setup_512x,

0 comments on commit 31fed80

Please sign in to comment.