mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
0935cac685
The header file for the driver should be in correct place. So move it to "arch/arm/include/asm/ti-common/keystone_net.h" and correct driver's external dependencies. At the same time align and correct some definitions. Acked-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
20 lines
357 B
C
20 lines
357 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/ti-common/keystone_net.h>
|
|
|
|
extern struct eth_priv_t eth_priv_cfg[];
|
|
|
|
int get_num_eth_ports(void);
|
|
void spl_init_keystone_plls(void);
|
|
|
|
#endif
|