Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1266027

[PATCH] power: bq27xxx_battery: Add I2C module check dependency in Kconfig

From "Andrew F. Davis" <afd@ti.com>
Newsgroups linux.kernel
Subject [PATCH] power: bq27xxx_battery: Add I2C module check dependency in Kconfig
Date 2015-11-09 22:30 +0100
Message-ID <qt2aJ-3vI-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Check if I2C core has been built as a module when BATTERY_BQ27XXX
is built-in. If so disable I2C functionality.

Fixes: 6bd03ce3c12a ("power: bq27xxx_battery: Remove unneeded dependency in Kconfig")
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 drivers/power/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig
index 237d7aa..2f944d7 100644
--- a/drivers/power/Kconfig
+++ b/drivers/power/Kconfig
@@ -166,6 +166,7 @@ config BATTERY_BQ27XXX_I2C
 	bool "BQ27xxx I2C support"
 	depends on BATTERY_BQ27XXX
 	depends on I2C
+	depends on !(I2C=m && BATTERY_BQ27XXX=y)
 	default y
 	help
 	  Say Y here to enable support for batteries with BQ27xxx (I2C) chips.
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] power: bq27xxx_battery: Add I2C module check dependency in Kconfig "Andrew F. Davis" <afd@ti.com> - 2015-11-09 22:30 +0100
  Re: [PATCH] power: bq27xxx_battery: Add I2C module check dependency in Kconfig Arnd Bergmann <arnd@arndb.de> - 2015-11-09 22:40 +0100
  Re: [PATCH] power: bq27xxx_battery: Add I2C module check dependency  in Kconfig Sebastian Reichel <sre@kernel.org> - 2015-11-10 05:00 +0100

csiph-web