x86: generalize power state machine for all platforms (1/2)

Renaming file names is the first step. Please see issue tracker
for more details.

BUG=chrome-os-partner:24832
BRANCH=link,falco,samus,rambi,peppy
TEST=build all x86 boards.
make clean BOARD=link && make -j32 BOARD=link && \
make clean BOARD=falco && make -j32 BOARD=falco && \
make clean BOARD=samus && make -j32 BOARD=samus && \
make clean BOARD=rambi && make -j32 BOARD=rambi && \
make clean BOARD=peppy && make -j32 BOARD=peppy

Change-Id: I3a296a0c14f6bebefa858438b1320061ac71dd38
Signed-off-by: Louis Yung-Chieh Lo <yjlou@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/181400
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Louis Yung-Chieh Lo
2014-01-02 16:45:38 -08:00
committed by chrome-internal-fetch
parent 07fa71e7cc
commit 4e27a42ff9
13 changed files with 12 additions and 12 deletions

View File

@@ -8,7 +8,7 @@
#include "adc_chip.h"
#include "backlight.h"
#include "board.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "driver/charger/bq24738.h"
#include "driver/temp_sensor/g781.h"

View File

@@ -8,7 +8,7 @@
#include "adc_chip.h"
#include "backlight.h"
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "driver/temp_sensor/tmp006.h"
#include "extpower.h"

View File

@@ -8,7 +8,7 @@
#include "adc_chip.h"
#include "backlight.h"
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "driver/temp_sensor/g781.h"
#include "extpower.h"

View File

@@ -7,7 +7,7 @@
#include "adc.h"
#include "adc_chip.h"
#include "backlight.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "driver/temp_sensor/tmp432.h"
#include "extpower.h"

View File

@@ -8,7 +8,7 @@
#include "adc.h"
#include "adc_chip.h"
#include "backlight.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "driver/temp_sensor/tmp006.h"
#include "driver/als_isl29035.h"

View File

@@ -6,7 +6,7 @@
/* X86 chipset power control module for Chrome EC */
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "console.h"
#include "gpio.h"

View File

@@ -6,7 +6,7 @@
/* X86 chipset power control module for Chrome EC */
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "console.h"
#include "ec_commands.h"

View File

@@ -11,4 +11,4 @@ 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
power-$(CONFIG_CHIPSET_X86)+=common.o

View File

@@ -6,7 +6,7 @@
/* Common functionality across x86 chipsets */
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "console.h"
#include "extpower.h"

View File

@@ -6,7 +6,7 @@
/* X86 chipset power control module for Chrome EC */
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "console.h"
#include "ec_commands.h"

View File

@@ -6,7 +6,7 @@
/* X86 chipset power control module for Chrome EC */
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
#include "common.h"
#include "console.h"
#include "gpio.h"

View File

@@ -16,7 +16,7 @@
#include "timer.h"
#include "util.h"
#include "chipset.h"
#include "chipset_x86_common.h"
#include "power.h"
/* Normally private stuff from the modules we're going to test */
#include "adapter_externs.h"