diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2013-07-04 01:39:11 -0400 |
---|---|---|
committer | Anton Vorontsov <anton@enomsg.org> | 2013-08-09 13:28:47 -0700 |
commit | e2e077cdde5c6b0c7145849afcf0780e08190311 (patch) | |
tree | d9a38e021a7c4b9a12cab4a9cc35df461bb189eb /drivers | |
parent | 78be3176c4335b8ff3d9625ed3fc571e7d2ba8f4 (diff) | |
download | linux-e2e077cdde5c6b0c7145849afcf0780e08190311.tar.bz2 |
power_supply: Make goldfish_battery depend on GOLDFISH || COMPILE_TEST
Nearly all the other goldfish peripherals (mtd, keyboard, etc) have a
dependency on the main platform's GOLDFISH Kconfig item, but this one got
skipped. Even with consistency as a justification, there was initial
resistance[1] from some people to adding it however, as they wanted the
extra compile coverage.
Now, with CONFIG_COMPILE_TEST, we have the middle ground that will give
people the coverage who want it, and let those who don't want it to skip
ever seeing the option presented.
[1] https://lkml.org/lkml/2013/2/27/333
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Jiri Slaby <jslaby@suse.cz>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Anton Vorontsov <anton@enomsg.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/power/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index 7b8979c63f48..dcc0d9e5817d 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -357,7 +357,7 @@ config AB8500_BM config BATTERY_GOLDFISH tristate "Goldfish battery driver" - depends on GENERIC_HARDIRQS + depends on GENERIC_HARDIRQS && (GOLDFISH || COMPILE_TEST) help Say Y to enable support for the battery and AC power in the Goldfish emulator. |