Basic PM support for 83xx. Standby is implemented as sleep. Suspend-to-RAM is implemented as "deep sleep" (with the processor turned off) on 831x. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18 lines
612 B
Makefile
18 lines
612 B
Makefile
#
|
|
# Makefile for the PowerPC 83xx linux kernel.
|
|
#
|
|
obj-y := misc.o usb.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_SUSPEND) += suspend.o suspend-asm.o
|
|
obj-$(CONFIG_MPC831x_RDB) += mpc831x_rdb.o
|
|
obj-$(CONFIG_MPC832x_RDB) += mpc832x_rdb.o
|
|
obj-$(CONFIG_MPC834x_MDS) += mpc834x_mds.o
|
|
obj-$(CONFIG_MPC834x_ITX) += mpc834x_itx.o
|
|
obj-$(CONFIG_MPC836x_MDS) += mpc836x_mds.o
|
|
obj-$(CONFIG_MPC836x_RDK) += mpc836x_rdk.o
|
|
obj-$(CONFIG_MPC832x_MDS) += mpc832x_mds.o
|
|
obj-$(CONFIG_MPC837x_MDS) += mpc837x_mds.o
|
|
obj-$(CONFIG_SBC834x) += sbc834x.o
|
|
obj-$(CONFIG_MPC837x_RDB) += mpc837x_rdb.o
|
|
obj-$(CONFIG_ASP834x) += asp834x.o
|