mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-05 14:31:31 +00:00
BUG=b:63508740 BRANCH=None TEST=`make -j buildall` Change-Id: I66e0e229c61c85af8f1f1c263e107e9990399e6a Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/564798 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
20 lines
772 B
Makefile
20 lines
772 B
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Power management for application processor and peripherals
|
|
#
|
|
|
|
power-$(CONFIG_CHIPSET_APOLLOLAKE)+=apollolake.o intel_x86.o
|
|
power-$(CONFIG_CHIPSET_BRASWELL)+=braswell.o
|
|
power-$(CONFIG_CHIPSET_CANNONLAKE)+=cannonlake.o intel_x86.o
|
|
power-$(CONFIG_CHIPSET_ECDRIVEN)+=ec_driven.o
|
|
power-$(CONFIG_CHIPSET_MEDIATEK)+=mediatek.o
|
|
power-$(CONFIG_CHIPSET_RK3399)+=rk3399.o
|
|
power-$(CONFIG_CHIPSET_ROCKCHIP)+=rockchip.o
|
|
power-$(CONFIG_CHIPSET_SKYLAKE)+=skylake.o intel_x86.o
|
|
power-$(CONFIG_CHIPSET_TEGRA)+=tegra.o
|
|
power-$(CONFIG_CHIPSET_STONEY)+=stoney.o
|
|
power-$(CONFIG_POWER_COMMON)+=common.o
|