All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH] hwmon: max6639: Fix CONFIG_PM compile option
@ 2012-03-24 18:36 Roland Stigge
  2012-03-24 19:12 ` Guenter Roeck
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Roland Stigge @ 2012-03-24 18:36 UTC (permalink / raw)
  To: lm-sensors

This patch fixes a compiler warning in case CONFIG_PM is not defined

Signed-off-by: Roland Stigge <stigge@antcom.de>

---

 This solves the issue recently encountered by Kurt Roeck in the nightly build.

 The solution with #ifdef's is done as in all the other drivers.

 drivers/hwmon/max6639.c |    5 +++++
 1 file changed, 5 insertions(+)

--- linux-2.6.orig/drivers/hwmon/max6639.c
+++ linux-2.6/drivers/hwmon/max6639.c
@@ -596,6 +596,7 @@ static int max6639_remove(struct i2c_cli
 	return 0;
 }
 
+#ifdef CONFIG_PM
 static int max6639_suspend(struct device *dev)
 {
 	struct i2c_client *client = to_i2c_client(dev);
@@ -617,6 +618,10 @@ static int max6639_resume(struct device
 	return i2c_smbus_write_byte_data(client,
 			MAX6639_REG_GCONFIG, data & ~MAX6639_GCONFIG_STANDBY);
 }
+#else
+#define max6639_suspend NULL
+#define max6639_resume NULL
+#endif
 
 static const struct i2c_device_id max6639_id[] = {
 	{"max6639", 0},

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-03-26 10:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-24 18:36 [lm-sensors] [PATCH] hwmon: max6639: Fix CONFIG_PM compile option Roland Stigge
2012-03-24 19:12 ` Guenter Roeck
2012-03-24 19:45 ` Roland Stigge
2012-03-24 22:52 ` Guenter Roeck
2012-03-26 10:37 ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.