Skip to content

Commit

Permalink
x86: Move itss.c from Apollo Lake to a more generic location
Browse files Browse the repository at this point in the history
The Interrupt Timer Subsystem (ITSS) is not specific to Apollo Lake, so
move it to a common location within arch/x86.

Signed-off-by: Wolfgang Wallner <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
[bmeng: conditionally build itss.c]
Signed-off-by: Bin Meng <[email protected]>
  • Loading branch information
br-ww authored and lbmeng committed Feb 4, 2020
1 parent 142c975 commit 43709fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion arch/x86/cpu/apollolake/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ obj-y += fsp_s.o
endif

obj-y += hostbridge.o
obj-y += itss.o
obj-y += lpc.o
obj-y += p2sb.o
obj-y += pch.o
Expand Down
3 changes: 3 additions & 0 deletions arch/x86/cpu/intel_common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ obj-y += microcode.o
endif
endif
obj-y += pch.o
ifdef CONFIG_INTEL_APOLLOLAKE
obj-y += itss.o
endif

ifdef CONFIG_SPL
ifndef CONFIG_SPL_BUILD
Expand Down
File renamed without changes.

0 comments on commit 43709fa

Please sign in to comment.