From 3d0980eef5e2c7e72d5ba2205f732ac332c7a011 Mon Sep 17 00:00:00 2001 From: Amit Pundir Date: Tue, 29 Dec 2015 12:39:11 +0530 Subject: [PATCH] goldfish_bus: switch GOLDFISH_BUS config back to bool AOSP commit a61e4d271cba "Enable adb with android-pipe in IA image" made GOLDFISH_BUS modular (i.e switched it to "tristate" in Kconfig from "bool"), which is not buildable. Instead of fixing the build and supporting it in modular form, which AOSP doesn't agree with anyway, lets restore it to the original state ("bool") in the Kconfig. Signed-off-by: Amit Pundir --- drivers/platform/goldfish/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/goldfish/Kconfig b/drivers/platform/goldfish/Kconfig index f4f00f75d267..50331e3e54f3 100644 --- a/drivers/platform/goldfish/Kconfig +++ b/drivers/platform/goldfish/Kconfig @@ -10,7 +10,7 @@ menuconfig GOLDFISH if GOLDFISH config GOLDFISH_BUS - tristate "Goldfish platform bus" + bool "Goldfish platform bus" ---help--- This is a virtual bus to host Goldfish Android Virtual Devices. -- 2.34.1