diff options
author | Tom Rini <trini@konsulko.com> | 2021-12-12 22:12:26 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-12-27 08:41:38 -0500 |
commit | 954a2f81775096fc5066632c979b0d8d83683b87 (patch) | |
tree | 09793a3b0ad4c52a5dd92834c9c4401dd387b5c3 /board/xes | |
parent | 4d69303299289e0d7f062008094c69726855a0fa (diff) | |
download | u-boot-954a2f81775096fc5066632c979b0d8d83683b87.tar.gz u-boot-954a2f81775096fc5066632c979b0d8d83683b87.tar.bz2 u-boot-954a2f81775096fc5066632c979b0d8d83683b87.zip |
pci: Remove unused FSL_PCI_INIT code
The symbol CONFIG_FSL_PCI_INIT is no longer enabled anywhere, removed
now unused code.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/xes')
-rw-r--r-- | board/xes/common/Makefile | 1 | ||||
-rw-r--r-- | board/xes/common/fsl_8xxx_pci.c | 22 |
2 files changed, 0 insertions, 23 deletions
diff --git a/board/xes/common/Makefile b/board/xes/common/Makefile index 4932030547..002821916c 100644 --- a/board/xes/common/Makefile +++ b/board/xes/common/Makefile @@ -3,7 +3,6 @@ # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -obj-$(CONFIG_FSL_PCI_INIT) += fsl_8xxx_pci.o obj-$(CONFIG_MPC86xx) += fsl_8xxx_clk.o obj-$(CONFIG_ARCH_P2020) += fsl_8xxx_clk.o obj-$(CONFIG_MPC85xx) += fsl_8xxx_misc.o board.o diff --git a/board/xes/common/fsl_8xxx_pci.c b/board/xes/common/fsl_8xxx_pci.c deleted file mode 100644 index c1fce7d331..0000000000 --- a/board/xes/common/fsl_8xxx_pci.c +++ /dev/null @@ -1,22 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Copyright 2008 Extreme Engineering Solutions, Inc. - * Copyright 2007-2008 Freescale Semiconductor, Inc. - */ - -#include <common.h> -#include <init.h> -#include <pci.h> -#include <asm/fsl_pci.h> -#include <asm/fsl_serdes.h> -#include <asm/io.h> -#include <linux/compiler.h> -#include <linux/libfdt.h> -#include <fdt_support.h> - -#if defined(CONFIG_OF_BOARD_SETUP) -void ft_board_pci_setup(void *blob, struct bd_info *bd) -{ - FT_FSL_PCI_SETUP; -} -#endif /* CONFIG_OF_BOARD_SETUP */ |