board: fsl: lx2160a: Fix the loop in board_fix_fdt function
[oweals/u-boot.git] / board / freescale / t208xrdb / pci.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2007-2014 Freescale Semiconductor, Inc.
4  */
5
6 #include <common.h>
7 #include <command.h>
8 #include <init.h>
9 #include <pci.h>
10 #include <asm/fsl_pci.h>
11 #include <linux/libfdt.h>
12 #include <fdt_support.h>
13 #include <asm/fsl_serdes.h>
14
15 #if !defined(CONFIG_DM_PCI)
16 void pci_init_board(void)
17 {
18         fsl_pcie_init_board(0);
19 }
20
21 void pci_of_setup(void *blob, bd_t *bd)
22 {
23         FT_FSL_PCI_SETUP;
24 }
25 #endif