diff options
author | Wolfgang Wallner <wolfgang.wallner@br-automation.com> | 2020-02-04 09:04:56 +0100 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2020-02-07 22:41:24 +0800 |
commit | 2999846c112712ec3bcd4f1937006dd62d3b20e3 (patch) | |
tree | fc39f27046ad319424c24eeceba4af41e28ace5a /arch/x86/cpu/intel_common/Makefile | |
parent | 8a6ffeda97dfda5263ef40e1a4efb25b032ce04c (diff) |
x86: Move P2SB from Apollo Lake to a more generic location
The Primary to Sideband Bridge (P2SB) is not specific to Apollo Lake, so
move its driver to a common location within arch/x86.
Signed-off-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/intel_common/Makefile')
-rw-r--r-- | arch/x86/cpu/intel_common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/cpu/intel_common/Makefile b/arch/x86/cpu/intel_common/Makefile index e22c70781d..1736bd2b53 100644 --- a/arch/x86/cpu/intel_common/Makefile +++ b/arch/x86/cpu/intel_common/Makefile @@ -28,6 +28,7 @@ endif endif obj-y += pch.o obj-$(CONFIG_HAVE_ITSS) += itss.o +obj-$(CONFIG_HAVE_P2SB) += p2sb.o ifdef CONFIG_SPL ifndef CONFIG_SPL_BUILD |