summaryrefslogtreecommitdiff
path: root/drivers/net/phy/ti_phy_init.c
blob: 277b29a26342bba645aa78a051a168a1b422750a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-2.0
/*
 * TI Generic PHY Init to register any TI Ethernet PHYs
 *
 * Author: Dan Murphy <dmurphy@ti.com>
 *
 * Copyright (C) 2019-20 Texas Instruments Inc.
 */

#include "ti_phy_init.h"

int phy_ti_init(void)
{
#ifdef CONFIG_PHY_TI_DP83867
	phy_dp83867_init();
#endif
	return 0;
}