forked from skristiansson/linux
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'msm-core' of git://codeaurora.org/quic/kernel/dwalker/l…
…inux-msm * 'msm-core' of git://codeaurora.org/quic/kernel/dwalker/linux-msm: (72 commits) msm: 7x30 Kconfig and makefile changes msm: clock support for the MSM7x30 CPU. msm: physical offset for MSM7X30 msm: io: add io support for 7x30 msm: Add extern for 7x30 clock list. msm: dma: add 7x30 security domain abstraction msm: update basic board layout for MSM7x30 msm: add devices-msm7x30.c msm: add msm_iomap-7x30.h for MSM7x30 support msm: irqs: add irqs-7x30.h for MSM7x30 support msm: 8x50 Kconfig changes msm: physical offset for QSD8x50 msm: io: add io support for 8x50 msm: add extern for 8x50 clock list. msm: add devices-qsd8x50.c msm: update basic board layout for QSD8x50 msm: add msm_iomap-8x50.h for QSD8x50 support msm: irqs: add irqs-8x50.h for QSD8x50 support msm: timer: allow MSM_DGT_BASE to be overriden msm: add Qualcomm 7x30 interrupt controller driver. ...
- Loading branch information
Showing
56 changed files
with
6,539 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
obj-y += io.o idle.o irq.o timer.o dma.o | ||
obj-y += devices.o | ||
obj-y += proc_comm.o | ||
obj-y += io.o idle.o timer.o dma.o | ||
obj-y += vreg.o | ||
obj-y += clock.o clock-7x01a.o | ||
obj-y += acpuclock-arm11.o | ||
obj-y += clock.o clock-pcom.o | ||
obj-y += gpio.o | ||
|
||
obj-$(CONFIG_MACH_HALIBUT) += board-halibut.o | ||
ifdef CONFIG_MSM_VIC | ||
obj-y += irq-vic.o | ||
else | ||
obj-y += irq.o | ||
endif | ||
|
||
obj-$(CONFIG_ARCH_QSD8X50) += sirc.o | ||
obj-$(CONFIG_MSM_SMD) += smd.o smd_debug.o | ||
obj-$(CONFIG_MSM_SMD) += last_radio_log.o | ||
|
||
obj-$(CONFIG_MACH_TROUT) += board-trout.o devices-msm7x00.o | ||
obj-$(CONFIG_MACH_HALIBUT) += board-halibut.o devices-msm7x00.o | ||
obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30.o devices-msm7x30.o | ||
obj-$(CONFIG_ARCH_QSD8X50) += board-qsd8x50.o devices-qsd8x50.o | ||
|
||
obj-$(CONFIG_MACH_TROUT) += board-dream.o |
Oops, something went wrong.