diff options
Diffstat (limited to 'arch/blackfin/lib')
| -rw-r--r-- | arch/blackfin/lib/Makefile | 18 | ||||
| -rw-r--r-- | arch/blackfin/lib/board.c | 7 | ||||
| -rw-r--r-- | arch/blackfin/lib/memcmp.S | 15 | ||||
| -rw-r--r-- | arch/blackfin/lib/memcpy.S | 15 | ||||
| -rw-r--r-- | arch/blackfin/lib/memmove.S | 15 | ||||
| -rw-r--r-- | arch/blackfin/lib/memset.S | 15 | ||||
| -rw-r--r-- | arch/blackfin/lib/muldi3.c | 18 | ||||
| -rw-r--r-- | arch/blackfin/lib/string.c | 18 | 
8 files changed, 14 insertions, 107 deletions
| diff --git a/arch/blackfin/lib/Makefile b/arch/blackfin/lib/Makefile index 37e0663a3..5603eb93e 100644 --- a/arch/blackfin/lib/Makefile +++ b/arch/blackfin/lib/Makefile @@ -6,23 +6,7 @@  # (C) Copyright 2000-2006  # Wolfgang Denk, DENX Software Engineering, wd@denx.de.  # -# See file CREDITS for list of people who contributed to this -# project. -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of -# the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, -# MA 02110-1301 USA +# SPDX-License-Identifier:	GPL-2.0+  #  include $(TOPDIR)/config.mk diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index f1d55470e..10223bdb7 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -37,6 +37,10 @@  int post_flag;  #endif +#if defined(CONFIG_SYS_I2C) +#include <i2c.h> +#endif +  DECLARE_GLOBAL_DATA_PTR;  __attribute__((always_inline)) @@ -387,6 +391,9 @@ void board_init_r(gd_t * id, ulong dest_addr)  	mmc_initialize(bd);  #endif +#if defined(CONFIG_SYS_I2C) +	i2c_reloc_fixup(); +#endif  	/* relocate environment function pointers etc. */  	env_relocate(); diff --git a/arch/blackfin/lib/memcmp.S b/arch/blackfin/lib/memcmp.S index 6c834a7e8..c8a5bed65 100644 --- a/arch/blackfin/lib/memcmp.S +++ b/arch/blackfin/lib/memcmp.S @@ -4,20 +4,7 @@   * Copyright 2004-2007 Analog Devices Inc.   * Enter bugs at http://blackfin.uclinux.org/   * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see the file COPYING, or write - * to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA + * SPDX-License-Identifier:	GPL-2.0+   */  .align 2 diff --git a/arch/blackfin/lib/memcpy.S b/arch/blackfin/lib/memcpy.S index e6b359a34..596ff1ca2 100644 --- a/arch/blackfin/lib/memcpy.S +++ b/arch/blackfin/lib/memcpy.S @@ -4,20 +4,7 @@   * Copyright 2004-2007 Analog Devices Inc.   * Enter bugs at http://blackfin.uclinux.org/   * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see the file COPYING, or write - * to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA + * SPDX-License-Identifier:	GPL-2.0+   */  .align 2 diff --git a/arch/blackfin/lib/memmove.S b/arch/blackfin/lib/memmove.S index e385c4f6f..9ab20770d 100644 --- a/arch/blackfin/lib/memmove.S +++ b/arch/blackfin/lib/memmove.S @@ -4,20 +4,7 @@   * Copyright 2004-2007 Analog Devices Inc.   * Enter bugs at http://blackfin.uclinux.org/   * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see the file COPYING, or write - * to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA + * SPDX-License-Identifier:	GPL-2.0+   */  .align 2 diff --git a/arch/blackfin/lib/memset.S b/arch/blackfin/lib/memset.S index 26f63cdc9..21cbabd58 100644 --- a/arch/blackfin/lib/memset.S +++ b/arch/blackfin/lib/memset.S @@ -4,20 +4,7 @@   * Copyright 2004-2007 Analog Devices Inc.   * Enter bugs at http://blackfin.uclinux.org/   * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, see the file COPYING, or write - * to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA + * SPDX-License-Identifier:	GPL-2.0+   */  .align 2 diff --git a/arch/blackfin/lib/muldi3.c b/arch/blackfin/lib/muldi3.c index bf1ca535f..65f55238f 100644 --- a/arch/blackfin/lib/muldi3.c +++ b/arch/blackfin/lib/muldi3.c @@ -3,23 +3,7 @@   *   * Copyright (c) 2005-2007 Analog Devices Inc.   * - * See file CREDITS for list of people who contributed to this - * project. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - * MA 02110-1301 USA + * SPDX-License-Identifier:	GPL-2.0+   */  /* Generic function got from GNU gcc package, libgcc2.c */ diff --git a/arch/blackfin/lib/string.c b/arch/blackfin/lib/string.c index 5b7ac0b91..f0a061b47 100644 --- a/arch/blackfin/lib/string.c +++ b/arch/blackfin/lib/string.c @@ -6,23 +6,7 @@   * (C) Copyright 2000-2004   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   * - * See file CREDITS for list of people who contributed to this - * project. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, - * MA 02110-1301 USA + * SPDX-License-Identifier:	GPL-2.0+   */  #include <common.h> |