diff options
author | Yutang Jiang <yutang.jiang@nxp.com> | 2016-12-01 23:01:27 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-12 09:57:40 +0100 |
commit | d5fc7430ca293213dd4f1de7f52446c17d4def6a (patch) | |
tree | 4d884312e45871f219a0f1993c80299cc1cc61a6 /package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch | |
parent | b0ac825884e7bfe3f68385109df3234e37022c71 (diff) | |
download | mtk-20170518-d5fc7430ca293213dd4f1de7f52446c17d4def6a.zip mtk-20170518-d5fc7430ca293213dd4f1de7f52446c17d4def6a.tar.gz mtk-20170518-d5fc7430ca293213dd4f1de7f52446c17d4def6a.tar.bz2 |
layerscape: uboot-layerscape: prefer github over git.freescale.com
In order to prevent the impact of the merger of the company and the potential
rebase of the SDK repositories, migrate the u-boot source to github.
Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
Diffstat (limited to 'package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch')
-rw-r--r-- | package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch b/package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch deleted file mode 100644 index 3d49a2f..0000000 --- a/package/boot/uboot-layerscape/patches/0026-fsl-qixis-conditionally-compile-IFC-based-qixis-func.patch +++ /dev/null @@ -1,38 +0,0 @@ -From d99349711fa42b3e401bf9a71e315440b8ed2c17 Mon Sep 17 00:00:00 2001 -From: Abhimanyu Saini <abhimanyu.saini@nxp.com> -Date: Tue, 10 May 2016 09:21:35 +0530 -Subject: [PATCH 26/93] fsl, qixis: conditionally compile IFC based qixis - functions - -Check if qixis supports memory-mapped read/write -before compiling IFC based qixis read/write functions. - -Signed-off-by: Calvin Johnson <calvin.johnson@nxp.com> -Signed-off-by: Abhimanyu Saini <abhimanyu.saini@nxp.com> ---- - board/freescale/common/qixis.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/board/freescale/common/qixis.c b/board/freescale/common/qixis.c -index 113295f..2e35d41 100644 ---- a/board/freescale/common/qixis.c -+++ b/board/freescale/common/qixis.c -@@ -27,6 +27,7 @@ void qixis_write_i2c(unsigned int reg, u8 value) - } - #endif - -+#ifdef QIXIS_BASE - u8 qixis_read(unsigned int reg) - { - void *p = (void *)QIXIS_BASE; -@@ -40,6 +41,7 @@ void qixis_write(unsigned int reg, u8 value) - - out_8(p + reg, value); - } -+#endif - - u16 qixis_read_minor(void) - { --- -1.7.9.5 - |