mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-07 16:11:43 +00:00
Update comments with more info, or remove if no longer applicable. No code changes. BUG=chrome-os-partner:18343 BRANCH=none TEST=build all platforms; pass unit tests Change-Id: I5b56eeb500bc0f00e84e91ef99684f4b1b310972 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/175418 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
15 lines
507 B
Makefile
15 lines
507 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_BAYTRAIL)+=baytrail.o
|
|
power-$(CONFIG_CHIPSET_GAIA)+=gaia.o
|
|
power-$(CONFIG_CHIPSET_HASWELL)+=haswell.o
|
|
power-$(CONFIG_CHIPSET_IVYBRIDGE)+=ivybridge.o
|
|
power-$(CONFIG_CHIPSET_TEGRA)+=tegra.o
|
|
power-$(CONFIG_CHIPSET_X86)+=x86_common.o
|