From patchwork Fri Nov 13 05:51:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 56492 Delivered-To: patch@linaro.org Received: by 10.112.155.196 with SMTP id vy4csp838220lbb; Thu, 12 Nov 2015 21:51:56 -0800 (PST) X-Received: by 10.28.46.15 with SMTP id u15mr1393340wmu.86.1447393916649; Thu, 12 Nov 2015 21:51:56 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id ft10si23557628wjc.19.2015.11.12.21.51.56; Thu, 12 Nov 2015 21:51:56 -0800 (PST) Received-SPF: pass (google.com: domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4D2DA4B9EB; Fri, 13 Nov 2015 06:51:55 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ignJwagEue4W; Fri, 13 Nov 2015 06:51:55 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AFE924B9B8; Fri, 13 Nov 2015 06:51:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2D0FD4B9B8 for ; Fri, 13 Nov 2015 06:51:47 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 91awK8jiJH0n for ; Fri, 13 Nov 2015 06:51:47 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from comal.ext.ti.com (comal.ext.ti.com [198.47.26.152]) by theia.denx.de (Postfix) with ESMTPS id 18A054B9B3 for ; Fri, 13 Nov 2015 06:51:43 +0100 (CET) Received: from dflxv15.itg.ti.com ([128.247.5.124]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id tAD5paff001348; Thu, 12 Nov 2015 23:51:36 -0600 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dflxv15.itg.ti.com (8.14.3/8.13.8) with ESMTP id tAD5pa45016760; Thu, 12 Nov 2015 23:51:36 -0600 Received: from dlep33.itg.ti.com (157.170.170.75) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.224.2; Thu, 12 Nov 2015 23:51:36 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id tAD5pYLN014115; Thu, 12 Nov 2015 23:51:35 -0600 From: Nishanth Menon To: Simon Glass , Tom Rini , Masahiro Yamada , Daniel Schwierzeck , Michal Marek , Stefan Roese , Bin Meng Date: Thu, 12 Nov 2015 23:51:34 -0600 Message-ID: <1447393894-4415-1-git-send-email-nm@ti.com> X-Mailer: git-send-email 2.6.2.402.g2635c2b In-Reply-To: <1447393422-4169-1-git-send-email-nm@ti.com> References: <1447393422-4169-1-git-send-email-nm@ti.com> MIME-Version: 1.0 Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH RESEND V2 04/12] board: freescale: Move common headers to board-common directory X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Header files can be located in a generic location without needing to reference them with ../common/ Generated with the following script #!/bin/bash vendor=board/freescale common=$vendor/common cfiles=`git grep "../common" $vendor|grep "#include"|cut -d '"' -f2|sort -u|grep c$` headers=`git grep "../common" $vendor|grep "#include"|cut -d '"' -f2|sort -u|grep h$` mkdir -p $common/include/board-common set -x for header in $headers do echo "processing $header in $common" hbase=`basename $header` git mv $common/$hbase $common/include/board-common sed -i -e "s/\"..\/common\/$hbase\"//g" $vendor/*/*.[chS] sed -i -e "s/\"$hbase\"//g" $vendor/common/*.[chS] done Cc: Minghuan Lian Cc: Ying Zhang Cc: Pavel Machek Cc: "Ɓukasz Majewski" Cc: Scott Wood Cc: Masahiro Yamada Cc: Zhao Qiang Cc: Jan Kiszka Cc: Tom Warren Cc: tang yuantian Cc: Gong Qianyu Cc: Suresh Gupta Cc: Nishanth Menon Cc: Simon Glass Cc: Anatolij Gustschin Cc: Shaveta Leekha Cc: Chunhe Lan Cc: Shaohui Xie Cc: Priyanka Jain Cc: Poonam Aggrwal Cc: Shengzhou Liu Cc: Timur Tabi Cc: Adrian Alonso Cc: Peng Fan Cc: Fabio Estevam Cc: York Sun Cc: Dave Liu Cc: Prabhakar Kushwaha Cc: Mingkai Hu Cc: Alison Wang Cc: Naveen Burmi Signed-off-by: Nishanth Menon --- Too Many folks in Cc, so I am reposting with with --suppress-cc=all. Apologies on the spam board/freescale/b4860qds/b4860qds.c | 8 ++++---- board/freescale/b4860qds/eth_b4860qds.c | 6 +++--- board/freescale/b4860qds/spl.c | 2 +- board/freescale/bsc9132qds/bsc9132qds.c | 2 +- board/freescale/common/arm_sleep.c | 2 +- board/freescale/common/cds_pci_ft.c | 2 +- board/freescale/common/ics307_clk.c | 6 +++--- board/freescale/common/idt8t49n222a_serdes_clk.c | 2 +- board/freescale/common/{ => include/board-common}/cadmus.h | 0 board/freescale/common/{ => include/board-common}/dcu_sii9022a.h | 0 board/freescale/common/{ => include/board-common}/diu_ch7301.h | 0 board/freescale/common/{ => include/board-common}/eeprom.h | 0 board/freescale/common/{ => include/board-common}/fman.h | 0 .../common/{ => include/board-common}/idt8t49n222a_serdes_clk.h | 0 board/freescale/common/{ => include/board-common}/ngpixis.h | 0 board/freescale/common/{ => include/board-common}/pfuze.h | 0 board/freescale/common/{ => include/board-common}/pixis.h | 0 board/freescale/common/{ => include/board-common}/pq-mds-pib.h | 0 board/freescale/common/{ => include/board-common}/qixis.h | 0 board/freescale/common/{ => include/board-common}/sgmii_riser.h | 0 board/freescale/common/{ => include/board-common}/sleep.h | 0 board/freescale/common/{ => include/board-common}/via.h | 0 board/freescale/common/{ => include/board-common}/vid.h | 0 board/freescale/common/{ => include/board-common}/vsc3316_3308.h | 0 board/freescale/common/{ => include/board-common}/zm7300.h | 0 board/freescale/common/mpc85xx_sleep.c | 2 +- board/freescale/common/ngpixis.c | 2 +- board/freescale/common/pq-mds-pib.c | 2 +- board/freescale/common/qixis.c | 2 +- board/freescale/common/sys_eeprom.c | 2 +- board/freescale/common/vid.c | 2 +- board/freescale/common/vsc3316_3308.c | 2 +- board/freescale/common/zm7300.c | 2 +- board/freescale/corenet_ds/corenet_ds.c | 2 +- board/freescale/corenet_ds/eth_hydra.c | 4 ++-- board/freescale/corenet_ds/eth_p4080.c | 4 ++-- board/freescale/corenet_ds/eth_superhydra.c | 4 ++-- board/freescale/ls1021aqds/dcu.c | 2 +- board/freescale/ls1021aqds/eth.c | 4 ++-- board/freescale/ls1021aqds/ls1021aqds.c | 4 ++-- board/freescale/ls1021atwr/dcu.c | 2 +- board/freescale/ls1021atwr/ls1021atwr.c | 2 +- board/freescale/ls1043ardb/eth.c | 2 +- board/freescale/ls2085aqds/eth.c | 2 +- board/freescale/ls2085aqds/ls2085aqds.c | 2 +- board/freescale/ls2085ardb/ls2085ardb.c | 2 +- board/freescale/mpc832xemds/mpc832xemds.c | 2 +- board/freescale/mpc832xemds/pci.c | 2 +- board/freescale/mpc837xemds/mpc837xemds.c | 2 +- board/freescale/mpc8536ds/mpc8536ds.c | 2 +- board/freescale/mpc8541cds/mpc8541cds.c | 6 +++--- board/freescale/mpc8544ds/mpc8544ds.c | 2 +- board/freescale/mpc8548cds/mpc8548cds.c | 6 +++--- board/freescale/mpc8555cds/mpc8555cds.c | 6 +++--- board/freescale/mpc8569mds/mpc8569mds.c | 2 +- board/freescale/mpc8572ds/mpc8572ds.c | 2 +- board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c | 2 +- board/freescale/mx6qsabreauto/mx6qsabreauto.c | 2 +- board/freescale/mx6sabresd/mx6sabresd.c | 2 +- board/freescale/mx6slevk/mx6slevk.c | 2 +- board/freescale/mx6sxsabresd/mx6sxsabresd.c | 2 +- board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c | 2 +- board/freescale/mx7dsabresd/mx7dsabresd.c | 2 +- board/freescale/p1022ds/diu.c | 2 +- board/freescale/p1022ds/p1022ds.c | 2 +- board/freescale/p1022ds/spl.c | 2 +- board/freescale/p2041rdb/eth.c | 2 +- board/freescale/t102xqds/eth_t102xqds.c | 4 ++-- board/freescale/t102xqds/spl.c | 2 +- board/freescale/t102xqds/t102xqds.c | 4 ++-- board/freescale/t102xrdb/eth_t102xrdb.c | 2 +- board/freescale/t102xrdb/spl.c | 2 +- board/freescale/t102xrdb/t102xrdb.c | 2 +- board/freescale/t1040qds/diu.c | 4 ++-- board/freescale/t1040qds/eth.c | 4 ++-- board/freescale/t1040qds/t1040qds.c | 4 ++-- board/freescale/t104xrdb/diu.c | 2 +- board/freescale/t104xrdb/eth.c | 2 +- board/freescale/t104xrdb/spl.c | 2 +- board/freescale/t104xrdb/t104xrdb.c | 2 +- board/freescale/t208xqds/eth_t208xqds.c | 4 ++-- board/freescale/t208xqds/spl.c | 2 +- board/freescale/t208xqds/t208xqds.c | 6 +++--- board/freescale/t208xrdb/t208xrdb.c | 2 +- board/freescale/t4qds/eth.c | 4 ++-- board/freescale/t4qds/spl.c | 2 +- board/freescale/t4qds/t4240qds.c | 4 ++-- board/freescale/t4rdb/eth.c | 2 +- 88 files changed, 99 insertions(+), 99 deletions(-) rename board/freescale/common/{ => include/board-common}/cadmus.h (100%) rename board/freescale/common/{ => include/board-common}/dcu_sii9022a.h (100%) rename board/freescale/common/{ => include/board-common}/diu_ch7301.h (100%) rename board/freescale/common/{ => include/board-common}/eeprom.h (100%) rename board/freescale/common/{ => include/board-common}/fman.h (100%) rename board/freescale/common/{ => include/board-common}/idt8t49n222a_serdes_clk.h (100%) rename board/freescale/common/{ => include/board-common}/ngpixis.h (100%) rename board/freescale/common/{ => include/board-common}/pfuze.h (100%) rename board/freescale/common/{ => include/board-common}/pixis.h (100%) rename board/freescale/common/{ => include/board-common}/pq-mds-pib.h (100%) rename board/freescale/common/{ => include/board-common}/qixis.h (100%) rename board/freescale/common/{ => include/board-common}/sgmii_riser.h (100%) rename board/freescale/common/{ => include/board-common}/sleep.h (100%) rename board/freescale/common/{ => include/board-common}/via.h (100%) rename board/freescale/common/{ => include/board-common}/vid.h (100%) rename board/freescale/common/{ => include/board-common}/vsc3316_3308.h (100%) rename board/freescale/common/{ => include/board-common}/zm7300.h (100%) diff --git a/board/freescale/b4860qds/b4860qds.c b/board/freescale/b4860qds/b4860qds.c index 6a8fca61a0d4..1d15e291a251 100644 --- a/board/freescale/b4860qds/b4860qds.c +++ b/board/freescale/b4860qds/b4860qds.c @@ -21,10 +21,10 @@ #include #include -#include "../common/qixis.h" -#include "../common/vsc3316_3308.h" -#include "../common/idt8t49n222a_serdes_clk.h" -#include "../common/zm7300.h" +#include +#include +#include +#include #include "b4860qds.h" #include "b4860qds_qixis.h" #include "b4860qds_crossbar_con.h" diff --git a/board/freescale/b4860qds/eth_b4860qds.c b/board/freescale/b4860qds/eth_b4860qds.c index df90476a772c..6fc3dcce3a2f 100644 --- a/board/freescale/b4860qds/eth_b4860qds.c +++ b/board/freescale/b4860qds/eth_b4860qds.c @@ -28,9 +28,9 @@ #include #include -#include "../common/ngpixis.h" -#include "../common/fman.h" -#include "../common/qixis.h" +#include +#include +#include #include "b4860qds_qixis.h" #define EMI_NONE 0xFFFFFFFF diff --git a/board/freescale/b4860qds/spl.c b/board/freescale/b4860qds/spl.c index 3aa5a780f4bd..7b5773d5380a 100644 --- a/board/freescale/b4860qds/spl.c +++ b/board/freescale/b4860qds/spl.c @@ -9,7 +9,7 @@ #include #include #include -#include "../common/qixis.h" +#include #include "b4860qds_qixis.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/bsc9132qds/bsc9132qds.c b/board/freescale/bsc9132qds/bsc9132qds.c index 586daccb4a0b..fa765a4d75f9 100644 --- a/board/freescale/bsc9132qds/bsc9132qds.c +++ b/board/freescale/bsc9132qds/bsc9132qds.c @@ -30,7 +30,7 @@ #include #endif -#include "../common/qixis.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/common/arm_sleep.c b/board/freescale/common/arm_sleep.c index a498c65f040d..3db7b5f86f52 100644 --- a/board/freescale/common/arm_sleep.c +++ b/board/freescale/common/arm_sleep.c @@ -17,7 +17,7 @@ #include #endif -#include "sleep.h" +#include #ifdef CONFIG_U_QE #include "../../../drivers/qe/qe.h" #endif diff --git a/board/freescale/common/cds_pci_ft.c b/board/freescale/common/cds_pci_ft.c index 571dfbbaada6..a937dba1ab81 100644 --- a/board/freescale/common/cds_pci_ft.c +++ b/board/freescale/common/cds_pci_ft.c @@ -7,7 +7,7 @@ #include #include #include -#include "cadmus.h" +#include #if defined(CONFIG_OF_BOARD_SETUP) static void cds_pci_fixup(void *blob) diff --git a/board/freescale/common/ics307_clk.c b/board/freescale/common/ics307_clk.c index e683be324a95..e69f676d0125 100644 --- a/board/freescale/common/ics307_clk.c +++ b/board/freescale/common/ics307_clk.c @@ -10,13 +10,13 @@ #include "ics307_clk.h" #if defined(CONFIG_FSL_NGPIXIS) -#include "ngpixis.h" +#include #define fpga_reg pixis #elif defined(CONFIG_FSL_QIXIS) -#include "qixis.h" +#include #define fpga_reg ((struct qixis *)QIXIS_BASE) #else -#include "pixis.h" +#include #define fpga_reg pixis #endif diff --git a/board/freescale/common/idt8t49n222a_serdes_clk.c b/board/freescale/common/idt8t49n222a_serdes_clk.c index d34716227735..405d9b622ac5 100644 --- a/board/freescale/common/idt8t49n222a_serdes_clk.c +++ b/board/freescale/common/idt8t49n222a_serdes_clk.c @@ -5,7 +5,7 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "idt8t49n222a_serdes_clk.h" +#include #define DEVICE_ID_REG 0x00 diff --git a/board/freescale/common/cadmus.h b/board/freescale/common/include/board-common/cadmus.h similarity index 100% rename from board/freescale/common/cadmus.h rename to board/freescale/common/include/board-common/cadmus.h diff --git a/board/freescale/common/dcu_sii9022a.h b/board/freescale/common/include/board-common/dcu_sii9022a.h similarity index 100% rename from board/freescale/common/dcu_sii9022a.h rename to board/freescale/common/include/board-common/dcu_sii9022a.h diff --git a/board/freescale/common/diu_ch7301.h b/board/freescale/common/include/board-common/diu_ch7301.h similarity index 100% rename from board/freescale/common/diu_ch7301.h rename to board/freescale/common/include/board-common/diu_ch7301.h diff --git a/board/freescale/common/eeprom.h b/board/freescale/common/include/board-common/eeprom.h similarity index 100% rename from board/freescale/common/eeprom.h rename to board/freescale/common/include/board-common/eeprom.h diff --git a/board/freescale/common/fman.h b/board/freescale/common/include/board-common/fman.h similarity index 100% rename from board/freescale/common/fman.h rename to board/freescale/common/include/board-common/fman.h diff --git a/board/freescale/common/idt8t49n222a_serdes_clk.h b/board/freescale/common/include/board-common/idt8t49n222a_serdes_clk.h similarity index 100% rename from board/freescale/common/idt8t49n222a_serdes_clk.h rename to board/freescale/common/include/board-common/idt8t49n222a_serdes_clk.h diff --git a/board/freescale/common/ngpixis.h b/board/freescale/common/include/board-common/ngpixis.h similarity index 100% rename from board/freescale/common/ngpixis.h rename to board/freescale/common/include/board-common/ngpixis.h diff --git a/board/freescale/common/pfuze.h b/board/freescale/common/include/board-common/pfuze.h similarity index 100% rename from board/freescale/common/pfuze.h rename to board/freescale/common/include/board-common/pfuze.h diff --git a/board/freescale/common/pixis.h b/board/freescale/common/include/board-common/pixis.h similarity index 100% rename from board/freescale/common/pixis.h rename to board/freescale/common/include/board-common/pixis.h diff --git a/board/freescale/common/pq-mds-pib.h b/board/freescale/common/include/board-common/pq-mds-pib.h similarity index 100% rename from board/freescale/common/pq-mds-pib.h rename to board/freescale/common/include/board-common/pq-mds-pib.h diff --git a/board/freescale/common/qixis.h b/board/freescale/common/include/board-common/qixis.h similarity index 100% rename from board/freescale/common/qixis.h rename to board/freescale/common/include/board-common/qixis.h diff --git a/board/freescale/common/sgmii_riser.h b/board/freescale/common/include/board-common/sgmii_riser.h similarity index 100% rename from board/freescale/common/sgmii_riser.h rename to board/freescale/common/include/board-common/sgmii_riser.h diff --git a/board/freescale/common/sleep.h b/board/freescale/common/include/board-common/sleep.h similarity index 100% rename from board/freescale/common/sleep.h rename to board/freescale/common/include/board-common/sleep.h diff --git a/board/freescale/common/via.h b/board/freescale/common/include/board-common/via.h similarity index 100% rename from board/freescale/common/via.h rename to board/freescale/common/include/board-common/via.h diff --git a/board/freescale/common/vid.h b/board/freescale/common/include/board-common/vid.h similarity index 100% rename from board/freescale/common/vid.h rename to board/freescale/common/include/board-common/vid.h diff --git a/board/freescale/common/vsc3316_3308.h b/board/freescale/common/include/board-common/vsc3316_3308.h similarity index 100% rename from board/freescale/common/vsc3316_3308.h rename to board/freescale/common/include/board-common/vsc3316_3308.h diff --git a/board/freescale/common/zm7300.h b/board/freescale/common/include/board-common/zm7300.h similarity index 100% rename from board/freescale/common/zm7300.h rename to board/freescale/common/include/board-common/zm7300.h diff --git a/board/freescale/common/mpc85xx_sleep.c b/board/freescale/common/mpc85xx_sleep.c index e9cbd515a152..68940295211d 100644 --- a/board/freescale/common/mpc85xx_sleep.c +++ b/board/freescale/common/mpc85xx_sleep.c @@ -6,7 +6,7 @@ #include #include -#include "sleep.h" +#include #ifdef CONFIG_U_QE #include "../../../drivers/qe/qe.h" #endif diff --git a/board/freescale/common/ngpixis.c b/board/freescale/common/ngpixis.c index 0cb076acc41d..badc09e0733f 100644 --- a/board/freescale/common/ngpixis.c +++ b/board/freescale/common/ngpixis.c @@ -34,7 +34,7 @@ #include #include -#include "ngpixis.h" +#include static u8 __pixis_read(unsigned int reg) { diff --git a/board/freescale/common/pq-mds-pib.c b/board/freescale/common/pq-mds-pib.c index 1eb37866e3d0..bf50b9eaf0c8 100644 --- a/board/freescale/common/pq-mds-pib.c +++ b/board/freescale/common/pq-mds-pib.c @@ -12,7 +12,7 @@ #include #include -#include "pq-mds-pib.h" +#include int pib_init(void) { diff --git a/board/freescale/common/qixis.c b/board/freescale/common/qixis.c index 9f6b0e7f31ed..bd24b44a13e4 100644 --- a/board/freescale/common/qixis.c +++ b/board/freescale/common/qixis.c @@ -12,7 +12,7 @@ #include #include #include -#include "qixis.h" +#include #ifdef CONFIG_SYS_I2C_FPGA_ADDR u8 qixis_read_i2c(unsigned int reg) diff --git a/board/freescale/common/sys_eeprom.c b/board/freescale/common/sys_eeprom.c index 29aa778dbeca..f9cd33e27db2 100644 --- a/board/freescale/common/sys_eeprom.c +++ b/board/freescale/common/sys_eeprom.c @@ -13,7 +13,7 @@ #include #ifdef CONFIG_SYS_I2C_EEPROM_CCID -#include "../common/eeprom.h" +#include #define MAX_NUM_PORTS 8 #endif diff --git a/board/freescale/common/vid.c b/board/freescale/common/vid.c index 6b8af14e7aeb..3132adfc5b67 100644 --- a/board/freescale/common/vid.c +++ b/board/freescale/common/vid.c @@ -8,7 +8,7 @@ #include #include #include -#include "vid.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/common/vsc3316_3308.c b/board/freescale/common/vsc3316_3308.c index dd9c37ebe8fa..85fa92154b28 100644 --- a/board/freescale/common/vsc3316_3308.c +++ b/board/freescale/common/vsc3316_3308.c @@ -4,7 +4,7 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include "vsc3316_3308.h" +#include #define REVISION_ID_REG 0x7E #define INTERFACE_MODE_REG 0x79 diff --git a/board/freescale/common/zm7300.c b/board/freescale/common/zm7300.c index be5953ad2d80..8b1493e60b7e 100644 --- a/board/freescale/common/zm7300.c +++ b/board/freescale/common/zm7300.c @@ -5,7 +5,7 @@ */ /* Power-One ZM7300 DPM */ -#include "zm7300.h" +#include #define DPM_WP 0x96 #define WRP_OPCODE 0x01 diff --git a/board/freescale/corenet_ds/corenet_ds.c b/board/freescale/corenet_ds/corenet_ds.c index 6f0fea1a3566..48d6e2e6b81a 100644 --- a/board/freescale/corenet_ds/corenet_ds.c +++ b/board/freescale/corenet_ds/corenet_ds.c @@ -18,7 +18,7 @@ #include #include -#include "../common/ngpixis.h" +#include #include "corenet_ds.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/corenet_ds/eth_hydra.c b/board/freescale/corenet_ds/eth_hydra.c index 172a55b9883b..b34f50a74764 100644 --- a/board/freescale/corenet_ds/eth_hydra.c +++ b/board/freescale/corenet_ds/eth_hydra.c @@ -57,8 +57,8 @@ #include #include -#include "../common/ngpixis.h" -#include "../common/fman.h" +#include +#include #ifdef CONFIG_FMAN_ENET diff --git a/board/freescale/corenet_ds/eth_p4080.c b/board/freescale/corenet_ds/eth_p4080.c index c68dc2c24656..571941bda035 100644 --- a/board/freescale/corenet_ds/eth_p4080.c +++ b/board/freescale/corenet_ds/eth_p4080.c @@ -22,8 +22,8 @@ #include #include -#include "../common/ngpixis.h" -#include "../common/fman.h" +#include +#include #include #define EMI_NONE 0xffffffff diff --git a/board/freescale/corenet_ds/eth_superhydra.c b/board/freescale/corenet_ds/eth_superhydra.c index 62b163580b2d..e2b497a97931 100644 --- a/board/freescale/corenet_ds/eth_superhydra.c +++ b/board/freescale/corenet_ds/eth_superhydra.c @@ -57,8 +57,8 @@ #include #include -#include "../common/ngpixis.h" -#include "../common/fman.h" +#include +#include #ifdef CONFIG_FMAN_ENET diff --git a/board/freescale/ls1021aqds/dcu.c b/board/freescale/ls1021aqds/dcu.c index 90f5bc044523..24a999c59686 100644 --- a/board/freescale/ls1021aqds/dcu.c +++ b/board/freescale/ls1021aqds/dcu.c @@ -11,7 +11,7 @@ #include #include #include "div64.h" -#include "../common/diu_ch7301.h" +#include #include "ls1021aqds_qixis.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/ls1021aqds/eth.c b/board/freescale/ls1021aqds/eth.c index be351befec06..7b2b2310ac29 100644 --- a/board/freescale/ls1021aqds/eth.c +++ b/board/freescale/ls1021aqds/eth.c @@ -21,8 +21,8 @@ #include #include -#include "../common/sgmii_riser.h" -#include "../common/qixis.h" +#include +#include #define EMI1_MASK 0x1f #define EMI1_RGMII0 1 diff --git a/board/freescale/ls1021aqds/ls1021aqds.c b/board/freescale/ls1021aqds/ls1021aqds.c index d889ad50fd04..cb73d0824314 100644 --- a/board/freescale/ls1021aqds/ls1021aqds.c +++ b/board/freescale/ls1021aqds/ls1021aqds.c @@ -22,8 +22,8 @@ #include #include -#include "../common/sleep.h" -#include "../common/qixis.h" +#include +#include #include "ls1021aqds_qixis.h" #ifdef CONFIG_U_QE #include "../../../drivers/qe/qe.h" diff --git a/board/freescale/ls1021atwr/dcu.c b/board/freescale/ls1021atwr/dcu.c index 8fe4ccbeb401..e1f7055f5dc0 100644 --- a/board/freescale/ls1021atwr/dcu.c +++ b/board/freescale/ls1021atwr/dcu.c @@ -9,7 +9,7 @@ #include #include #include "div64.h" -#include "../common/dcu_sii9022a.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/ls1021atwr/ls1021atwr.c b/board/freescale/ls1021atwr/ls1021atwr.c index 4918c1192e2b..461ca1dcab95 100644 --- a/board/freescale/ls1021atwr/ls1021atwr.c +++ b/board/freescale/ls1021atwr/ls1021atwr.c @@ -25,7 +25,7 @@ #include #include #include -#include "../common/sleep.h" +#include #ifdef CONFIG_U_QE #include "../../../drivers/qe/qe.h" #endif diff --git a/board/freescale/ls1043ardb/eth.c b/board/freescale/ls1043ardb/eth.c index 61f2b5d4471f..4aba48c06d92 100644 --- a/board/freescale/ls1043ardb/eth.c +++ b/board/freescale/ls1043ardb/eth.c @@ -11,7 +11,7 @@ #include #include -#include "../common/fman.h" +#include int board_eth_init(bd_t *bis) { diff --git a/board/freescale/ls2085aqds/eth.c b/board/freescale/ls2085aqds/eth.c index b8a2bf49e685..96f467e97d32 100644 --- a/board/freescale/ls2085aqds/eth.c +++ b/board/freescale/ls2085aqds/eth.c @@ -16,7 +16,7 @@ #include #include -#include "../common/qixis.h" +#include #include "ls2085aqds_qixis.h" diff --git a/board/freescale/ls2085aqds/ls2085aqds.c b/board/freescale/ls2085aqds/ls2085aqds.c index b02d6e86b43f..d7c603cb0325 100644 --- a/board/freescale/ls2085aqds/ls2085aqds.c +++ b/board/freescale/ls2085aqds/ls2085aqds.c @@ -20,7 +20,7 @@ #include #include -#include "../common/qixis.h" +#include #include "ls2085aqds_qixis.h" #define PIN_MUX_SEL_SDHC 0x00 diff --git a/board/freescale/ls2085ardb/ls2085ardb.c b/board/freescale/ls2085ardb/ls2085ardb.c index 18953b8ecbfd..4795ab9dbec2 100644 --- a/board/freescale/ls2085ardb/ls2085ardb.c +++ b/board/freescale/ls2085ardb/ls2085ardb.c @@ -19,7 +19,7 @@ #include #include -#include "../common/qixis.h" +#include #include "ls2085ardb_qixis.h" #define PIN_MUX_SEL_SDHC 0x00 diff --git a/board/freescale/mpc832xemds/mpc832xemds.c b/board/freescale/mpc832xemds/mpc832xemds.c index adf425486e1e..5e0bdc973776 100644 --- a/board/freescale/mpc832xemds/mpc832xemds.c +++ b/board/freescale/mpc832xemds/mpc832xemds.c @@ -20,7 +20,7 @@ #include #endif #if defined(CONFIG_PQ_MDS_PIB) -#include "../common/pq-mds-pib.h" +#include #endif const qe_iop_conf_t qe_iop_conf_tab[] = { diff --git a/board/freescale/mpc832xemds/pci.c b/board/freescale/mpc832xemds/pci.c index e8b2b11d88b0..8c9ccde08744 100644 --- a/board/freescale/mpc832xemds/pci.c +++ b/board/freescale/mpc832xemds/pci.c @@ -14,7 +14,7 @@ #include #include #include -#include "../common/pq-mds-pib.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/mpc837xemds/mpc837xemds.c b/board/freescale/mpc837xemds/mpc837xemds.c index 572913c7ac52..114fbb5bf376 100644 --- a/board/freescale/mpc837xemds/mpc837xemds.c +++ b/board/freescale/mpc837xemds/mpc837xemds.c @@ -18,7 +18,7 @@ #include #include #include "pci.h" -#include "../common/pq-mds-pib.h" +#include int board_early_init_f(void) { diff --git a/board/freescale/mpc8536ds/mpc8536ds.c b/board/freescale/mpc8536ds/mpc8536ds.c index 7b0f46197147..646317a53a86 100644 --- a/board/freescale/mpc8536ds/mpc8536ds.c +++ b/board/freescale/mpc8536ds/mpc8536ds.c @@ -25,7 +25,7 @@ #include #include -#include "../common/sgmii_riser.h" +#include int board_early_init_f (void) { diff --git a/board/freescale/mpc8541cds/mpc8541cds.c b/board/freescale/mpc8541cds/mpc8541cds.c index 7b264dddd157..a63a1b5beecd 100644 --- a/board/freescale/mpc8541cds/mpc8541cds.c +++ b/board/freescale/mpc8541cds/mpc8541cds.c @@ -17,9 +17,9 @@ #include #include -#include "../common/cadmus.h" -#include "../common/eeprom.h" -#include "../common/via.h" +#include +#include +#include #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) extern void ddr_enable_ecc(unsigned int dram_size); diff --git a/board/freescale/mpc8544ds/mpc8544ds.c b/board/freescale/mpc8544ds/mpc8544ds.c index 66fb228a9089..9cc116c117cb 100644 --- a/board/freescale/mpc8544ds/mpc8544ds.c +++ b/board/freescale/mpc8544ds/mpc8544ds.c @@ -21,7 +21,7 @@ #include #include -#include "../common/sgmii_riser.h" +#include int checkboard (void) { diff --git a/board/freescale/mpc8548cds/mpc8548cds.c b/board/freescale/mpc8548cds/mpc8548cds.c index ca9b43c6b621..2f1aed2d12c6 100644 --- a/board/freescale/mpc8548cds/mpc8548cds.c +++ b/board/freescale/mpc8548cds/mpc8548cds.c @@ -21,9 +21,9 @@ #include #include -#include "../common/cadmus.h" -#include "../common/eeprom.h" -#include "../common/via.h" +#include +#include +#include void local_bus_init(void); diff --git a/board/freescale/mpc8555cds/mpc8555cds.c b/board/freescale/mpc8555cds/mpc8555cds.c index de5f5669e62f..55c4efd83936 100644 --- a/board/freescale/mpc8555cds/mpc8555cds.c +++ b/board/freescale/mpc8555cds/mpc8555cds.c @@ -15,9 +15,9 @@ #include #include -#include "../common/cadmus.h" -#include "../common/eeprom.h" -#include "../common/via.h" +#include +#include +#include #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) extern void ddr_enable_ecc(unsigned int dram_size); diff --git a/board/freescale/mpc8569mds/mpc8569mds.c b/board/freescale/mpc8569mds/mpc8569mds.c index 836578f3cb82..760f8607659e 100644 --- a/board/freescale/mpc8569mds/mpc8569mds.c +++ b/board/freescale/mpc8569mds/mpc8569mds.c @@ -27,7 +27,7 @@ #include "bcsr.h" #if defined(CONFIG_PQ_MDS_PIB) -#include "../common/pq-mds-pib.h" +#include #endif const qe_iop_conf_t qe_iop_conf_tab[] = { diff --git a/board/freescale/mpc8572ds/mpc8572ds.c b/board/freescale/mpc8572ds/mpc8572ds.c index 3f68cf496a45..44bd9676df9a 100644 --- a/board/freescale/mpc8572ds/mpc8572ds.c +++ b/board/freescale/mpc8572ds/mpc8572ds.c @@ -22,7 +22,7 @@ #include #include -#include "../common/sgmii_riser.h" +#include int checkboard (void) { diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c b/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c index 8f4183b82916..5c561955110d 100644 --- a/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c +++ b/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c @@ -12,7 +12,7 @@ #include #include #include -#include "../common/pixis.h" +#include #define PX_BRDCFG0_DLINK 0x10 #define PX_BRDCFG0_DVISEL 0x08 diff --git a/board/freescale/mx6qsabreauto/mx6qsabreauto.c b/board/freescale/mx6qsabreauto/mx6qsabreauto.c index 7c0e90ad0bc0..2ef52e7fc304 100644 --- a/board/freescale/mx6qsabreauto/mx6qsabreauto.c +++ b/board/freescale/mx6qsabreauto/mx6qsabreauto.c @@ -30,7 +30,7 @@ #include #include #include -#include "../common/pfuze.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index 564416700857..40b4315060c4 100644 --- a/board/freescale/mx6sabresd/mx6sabresd.c +++ b/board/freescale/mx6sabresd/mx6sabresd.c @@ -27,7 +27,7 @@ #include #include #include -#include "../common/pfuze.h" +#include #include #include diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c index 6ba604e70753..7c1702062804 100644 --- a/board/freescale/mx6slevk/mx6slevk.c +++ b/board/freescale/mx6slevk/mx6slevk.c @@ -26,7 +26,7 @@ #include #include #include -#include "../common/pfuze.h" +#include #include #include diff --git a/board/freescale/mx6sxsabresd/mx6sxsabresd.c b/board/freescale/mx6sxsabresd/mx6sxsabresd.c index b9af7e7b959b..4c25b2bf9a94 100644 --- a/board/freescale/mx6sxsabresd/mx6sxsabresd.c +++ b/board/freescale/mx6sxsabresd/mx6sxsabresd.c @@ -25,7 +25,7 @@ #include #include #include -#include "../common/pfuze.h" +#include #include #include diff --git a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c b/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c index 8650f350f3eb..1dbf6d22f884 100644 --- a/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c +++ b/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c @@ -25,7 +25,7 @@ #include #include #include -#include "../common/pfuze.h" +#include #include #include diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index ee9890b59905..f2209aea81bb 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -19,7 +19,7 @@ #include #include #include -#include "../common/pfuze.h" +#include #include #include #include diff --git a/board/freescale/p1022ds/diu.c b/board/freescale/p1022ds/diu.c index 6fd4d953b6e6..8e11823ae3e3 100644 --- a/board/freescale/p1022ds/diu.c +++ b/board/freescale/p1022ds/diu.c @@ -13,7 +13,7 @@ #include #include #include -#include "../common/ngpixis.h" +#include #include /* The CTL register is called 'csr' in the ngpixis_t structure */ diff --git a/board/freescale/p1022ds/p1022ds.c b/board/freescale/p1022ds/p1022ds.c index d7dd478dff90..81fdec0ec7cb 100644 --- a/board/freescale/p1022ds/p1022ds.c +++ b/board/freescale/p1022ds/p1022ds.c @@ -26,7 +26,7 @@ #include #include -#include "../common/ngpixis.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/p1022ds/spl.c b/board/freescale/p1022ds/spl.c index 7bd9d296ee0d..42d588e21215 100644 --- a/board/freescale/p1022ds/spl.c +++ b/board/freescale/p1022ds/spl.c @@ -10,7 +10,7 @@ #include #include #include -#include "../common/ngpixis.h" +#include #include #include diff --git a/board/freescale/p2041rdb/eth.c b/board/freescale/p2041rdb/eth.c index 95fe85bbfaa2..84017c4c6f0b 100644 --- a/board/freescale/p2041rdb/eth.c +++ b/board/freescale/p2041rdb/eth.c @@ -22,7 +22,7 @@ #include #include "cpld.h" -#include "../common/fman.h" +#include #ifdef CONFIG_FMAN_ENET /* diff --git a/board/freescale/t102xqds/eth_t102xqds.c b/board/freescale/t102xqds/eth_t102xqds.c index 99c23f79f471..a99d655d8e97 100644 --- a/board/freescale/t102xqds/eth_t102xqds.c +++ b/board/freescale/t102xqds/eth_t102xqds.c @@ -23,8 +23,8 @@ #include #include #include -#include "../common/qixis.h" -#include "../common/fman.h" +#include +#include #include "t102xqds_qixis.h" #define EMI_NONE 0xFFFFFFFF diff --git a/board/freescale/t102xqds/spl.c b/board/freescale/t102xqds/spl.c index 08aef6e15971..1d93edc2545f 100644 --- a/board/freescale/t102xqds/spl.c +++ b/board/freescale/t102xqds/spl.c @@ -11,7 +11,7 @@ #include #include #include -#include "../common/qixis.h" +#include #include "t102xqds_qixis.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t102xqds/t102xqds.c b/board/freescale/t102xqds/t102xqds.c index 708afcaebfac..df634c0c3052 100644 --- a/board/freescale/t102xqds/t102xqds.c +++ b/board/freescale/t102xqds/t102xqds.c @@ -19,10 +19,10 @@ #include #include #include -#include "../common/qixis.h" +#include #include "t102xqds.h" #include "t102xqds_qixis.h" -#include "../common/sleep.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t102xrdb/eth_t102xrdb.c b/board/freescale/t102xrdb/eth_t102xrdb.c index 02b283d26ff0..36af0f17e426 100644 --- a/board/freescale/t102xrdb/eth_t102xrdb.c +++ b/board/freescale/t102xrdb/eth_t102xrdb.c @@ -23,7 +23,7 @@ #include #include #include -#include "../common/fman.h" +#include int board_eth_init(bd_t *bis) { diff --git a/board/freescale/t102xrdb/spl.c b/board/freescale/t102xrdb/spl.c index 9c581ff88e08..70f162e6fd56 100644 --- a/board/freescale/t102xrdb/spl.c +++ b/board/freescale/t102xrdb/spl.c @@ -11,7 +11,7 @@ #include #include #include -#include "../common/sleep.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t102xrdb/t102xrdb.c b/board/freescale/t102xrdb/t102xrdb.c index fddd240f98a4..878e91d17db8 100644 --- a/board/freescale/t102xrdb/t102xrdb.c +++ b/board/freescale/t102xrdb/t102xrdb.c @@ -24,7 +24,7 @@ #include #include #endif -#include "../common/sleep.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t1040qds/diu.c b/board/freescale/t1040qds/diu.c index 021422470734..819f059c59b7 100644 --- a/board/freescale/t1040qds/diu.c +++ b/board/freescale/t1040qds/diu.c @@ -12,8 +12,8 @@ #include #include #include -#include "../common/qixis.h" -#include "../common/diu_ch7301.h" +#include +#include #include "t1040qds.h" #include "t1040qds_qixis.h" diff --git a/board/freescale/t1040qds/eth.c b/board/freescale/t1040qds/eth.c index 8bf34fa79ac6..a5846dbe5cb5 100644 --- a/board/freescale/t1040qds/eth.c +++ b/board/freescale/t1040qds/eth.c @@ -20,8 +20,8 @@ #include #include -#include "../common/fman.h" -#include "../common/qixis.h" +#include +#include #include "t1040qds_qixis.h" diff --git a/board/freescale/t1040qds/t1040qds.c b/board/freescale/t1040qds/t1040qds.c index eaca57fc5dfe..377fabd23328 100644 --- a/board/freescale/t1040qds/t1040qds.c +++ b/board/freescale/t1040qds/t1040qds.c @@ -20,8 +20,8 @@ #include #include -#include "../common/sleep.h" -#include "../common/qixis.h" +#include +#include #include "t1040qds.h" #include "t1040qds_qixis.h" diff --git a/board/freescale/t104xrdb/diu.c b/board/freescale/t104xrdb/diu.c index 3285bef546de..bca0ff16626c 100644 --- a/board/freescale/t104xrdb/diu.c +++ b/board/freescale/t104xrdb/diu.c @@ -12,7 +12,7 @@ #include #include -#include "../common/diu_ch7301.h" +#include #include "cpld.h" #include "t104xrdb.h" diff --git a/board/freescale/t104xrdb/eth.c b/board/freescale/t104xrdb/eth.c index 52cd1122493b..539eefb04186 100644 --- a/board/freescale/t104xrdb/eth.c +++ b/board/freescale/t104xrdb/eth.c @@ -14,7 +14,7 @@ #include #include -#include "../common/fman.h" +#include int board_eth_init(bd_t *bis) { diff --git a/board/freescale/t104xrdb/spl.c b/board/freescale/t104xrdb/spl.c index 4e8735b9ff19..87b2f417203f 100644 --- a/board/freescale/t104xrdb/spl.c +++ b/board/freescale/t104xrdb/spl.c @@ -11,7 +11,7 @@ #include #include #include -#include "../common/sleep.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t104xrdb/t104xrdb.c b/board/freescale/t104xrdb/t104xrdb.c index 322765288b08..fda9256b4109 100644 --- a/board/freescale/t104xrdb/t104xrdb.c +++ b/board/freescale/t104xrdb/t104xrdb.c @@ -19,7 +19,7 @@ #include #include #include -#include "../common/sleep.h" +#include #include "t104xrdb.h" #include "cpld.h" diff --git a/board/freescale/t208xqds/eth_t208xqds.c b/board/freescale/t208xqds/eth_t208xqds.c index 1c0ce2492ca2..922b5d5438e9 100644 --- a/board/freescale/t208xqds/eth_t208xqds.c +++ b/board/freescale/t208xqds/eth_t208xqds.c @@ -24,8 +24,8 @@ #include #include #include -#include "../common/qixis.h" -#include "../common/fman.h" +#include +#include #include "t208xqds_qixis.h" #define EMI_NONE 0xFFFFFFFF diff --git a/board/freescale/t208xqds/spl.c b/board/freescale/t208xqds/spl.c index a71c6171218c..93ef1d861f8c 100644 --- a/board/freescale/t208xqds/spl.c +++ b/board/freescale/t208xqds/spl.c @@ -11,7 +11,7 @@ #include #include #include -#include "../common/qixis.h" +#include #include "t208xqds_qixis.h" DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t208xqds/t208xqds.c b/board/freescale/t208xqds/t208xqds.c index 7c89cd5ee9a0..701b230c9a2e 100644 --- a/board/freescale/t208xqds/t208xqds.c +++ b/board/freescale/t208xqds/t208xqds.c @@ -18,9 +18,9 @@ #include #include -#include "../common/qixis.h" -#include "../common/vsc3316_3308.h" -#include "../common/vid.h" +#include +#include +#include #include "t208xqds.h" #include "t208xqds_qixis.h" diff --git a/board/freescale/t208xrdb/t208xrdb.c b/board/freescale/t208xrdb/t208xrdb.c index 0c2c1c565bdd..1629b28f7829 100644 --- a/board/freescale/t208xrdb/t208xrdb.c +++ b/board/freescale/t208xrdb/t208xrdb.c @@ -19,7 +19,7 @@ #include #include "t208xrdb.h" #include "cpld.h" -#include "../common/vid.h" +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/board/freescale/t4qds/eth.c b/board/freescale/t4qds/eth.c index 2dfdcbbd398e..dd519621081b 100644 --- a/board/freescale/t4qds/eth.c +++ b/board/freescale/t4qds/eth.c @@ -24,8 +24,8 @@ #include #include #include -#include "../common/qixis.h" -#include "../common/fman.h" +#include +#include #include "t4240qds_qixis.h" diff --git a/board/freescale/t4qds/spl.c b/board/freescale/t4qds/spl.c index 0c6156e7f09b..3ea0620f82b1 100644 --- a/board/freescale/t4qds/spl.c +++ b/board/freescale/t4qds/spl.c @@ -11,7 +11,7 @@ #include #include #include -#include "../common/qixis.h" +#include #include "t4240qds_qixis.h" #define FSL_CORENET_CCSR_PORSR1_RCW_MASK 0xFF800000 diff --git a/board/freescale/t4qds/t4240qds.c b/board/freescale/t4qds/t4240qds.c index 4f2cccd709d6..25ccbdcceb26 100644 --- a/board/freescale/t4qds/t4240qds.c +++ b/board/freescale/t4qds/t4240qds.c @@ -19,8 +19,8 @@ #include #include -#include "../common/qixis.h" -#include "../common/vsc3316_3308.h" +#include +#include #include "t4qds.h" #include "t4240qds_qixis.h" diff --git a/board/freescale/t4rdb/eth.c b/board/freescale/t4rdb/eth.c index e563a6169aec..758507a4846d 100644 --- a/board/freescale/t4rdb/eth.c +++ b/board/freescale/t4rdb/eth.c @@ -27,7 +27,7 @@ #include #include -#include "../common/fman.h" +#include #include "t4rdb.h" void fdt_fixup_board_enet(void *fdt)