diff options
author | York Sun <yorksun@freescale.com> | 2013-10-22 12:39:02 -0700 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2013-11-25 11:43:47 -0800 |
commit | 0b66513b2706e941b55ffc6ad5aa011e10e87960 (patch) | |
tree | e4b5097ccb350561124177b8f03cf9e643a08899 /board/freescale | |
parent | 00ec3fd21170e463e29723976d37f8ea2316f168 (diff) | |
download | u-boot-imx-0b66513b2706e941b55ffc6ad5aa011e10e87960.zip u-boot-imx-0b66513b2706e941b55ffc6ad5aa011e10e87960.tar.gz u-boot-imx-0b66513b2706e941b55ffc6ad5aa011e10e87960.tar.bz2 |
Driver/IFC: Move Freescale IFC driver to a common driver
Freescale IFC controller has been used for mpc8xxx. It will be used
for ARM-based SoC as well. This patch moves the driver to driver/misc
and fix the header file includes.
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board/freescale')
-rw-r--r-- | board/freescale/bsc9132qds/bsc9132qds.c | 2 | ||||
-rw-r--r-- | board/freescale/c29xpcie/c29xpcie.c | 2 | ||||
-rw-r--r-- | board/freescale/p1010rdb/p1010rdb.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/board/freescale/bsc9132qds/bsc9132qds.c b/board/freescale/bsc9132qds/bsc9132qds.c index c1ebcf8..9377280 100644 --- a/board/freescale/bsc9132qds/bsc9132qds.c +++ b/board/freescale/bsc9132qds/bsc9132qds.c @@ -17,7 +17,7 @@ #include <tsec.h> #include <mmc.h> #include <netdev.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h> #include <hwconfig.h> #include <i2c.h> #include <fsl_ddr_sdram.h> diff --git a/board/freescale/c29xpcie/c29xpcie.c b/board/freescale/c29xpcie/c29xpcie.c index 48c4b30..f964d61 100644 --- a/board/freescale/c29xpcie/c29xpcie.c +++ b/board/freescale/c29xpcie/c29xpcie.c @@ -18,7 +18,7 @@ #include <mmc.h> #include <netdev.h> #include <pci.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h> #include <asm/fsl_pci.h> #include "cpld.h" diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c index e940d22..62caf67 100644 --- a/board/freescale/p1010rdb/p1010rdb.c +++ b/board/freescale/p1010rdb/p1010rdb.c @@ -19,7 +19,7 @@ #include <netdev.h> #include <pci.h> #include <asm/fsl_serdes.h> -#include <asm/fsl_ifc.h> +#include <fsl_ifc.h> #include <asm/fsl_pci.h> #include <hwconfig.h> #include <i2c.h> |