mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 18:41:03 +00:00
e595107ebb
This patch moves K2HK board directory to a common Keystone II board directory. The Board related common functions are moved to a common keystone board file. Acked-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Hao Zhang <hzhang@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
19 lines
314 B
C
19 lines
314 B
C
/*
|
|
* K2HK EVM : Board common header
|
|
*
|
|
* (C) Copyright 2014
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _KS2_BOARD
|
|
#define _KS2_BOARD
|
|
|
|
#include <asm/arch/emac_defs.h>
|
|
|
|
extern struct eth_priv_t eth_priv_cfg[];
|
|
|
|
int get_num_eth_ports(void);
|
|
|
|
#endif
|