Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d2b750b authored by Murali Nalajala's avatar Murali Nalajala
Browse files

msm: pm: move PM driver to a machine independent location



As part of code reorganisation move PM driver from mach-msm
directory to a machine independent location in kernel.

Change-Id: I00fe33098c5463273fe34b615c0565eaa29a194f
Signed-off-by: default avatarMurali Nalajala <mnalajal@codeaurora.org>
parent 4af7e642
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -948,10 +948,6 @@ config MSM_GPIOMUX
config MSM_NATIVE_RESTART
	bool

config MSM_PM
	depends on PM
	bool

config MSM_EVENT_TIMER
	bool "Event timer"
	help
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ obj-$(CONFIG_ARCH_MSM8610) += clock-8610.o
obj-$(CONFIG_ARCH_MSM8610) += clock-dsi-8610.o
obj-$(CONFIG_ARCH_MDM9630) += clock-9630.o

obj-$(CONFIG_MSM_PM) += msm-pm.o pm-data.o lpm_levels.o
obj-$(CONFIG_MSM_PM) += lpm_levels.o

CFLAGS_msm_vibrator.o += -Idrivers/staging/android

+1 −0
Original line number Diff line number Diff line
@@ -510,3 +510,4 @@ source "drivers/power/reset/Kconfig"
endif # POWER_SUPPLY

source "drivers/power/avs/Kconfig"
source "drivers/power/qcom/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -66,3 +66,4 @@ obj-$(CONFIG_CHARGER_SMB347) += smb347-charger.o
obj-$(CONFIG_CHARGER_TPS65090)	+= tps65090-charger.o
obj-$(CONFIG_BATTERY_BCL)	+= battery_current_limit.o
obj-$(CONFIG_POWER_RESET)	+= reset/
obj-y				+= qcom/
+3 −0
Original line number Diff line number Diff line
config MSM_PM
	depends on PM
	bool
Loading