mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net: phy: micrel: Remove DT option lan8814,ignore-ts
When the PHY and the MAC are capable of doing timestamping, the PHY has
priority. Therefore the DT option lan8814,ignore-ts was added such that
the PHY will not expose a PHC so then the timestamping was done in the
MAC. This is not the correct approach of doing it, therefore remove
this.
Fixes: ece1950283
("net: phy: micrel: 1588 support for LAN8814 phy")
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b814403a8c
commit
76e9ccd689
1 changed files with 1 additions and 3 deletions
|
@ -2616,7 +2616,6 @@ static int lan8814_config_init(struct phy_device *phydev)
|
|||
|
||||
static int lan8814_probe(struct phy_device *phydev)
|
||||
{
|
||||
const struct device_node *np = phydev->mdio.dev.of_node;
|
||||
struct kszphy_priv *priv;
|
||||
u16 addr;
|
||||
int err;
|
||||
|
@ -2630,8 +2629,7 @@ static int lan8814_probe(struct phy_device *phydev)
|
|||
phydev->priv = priv;
|
||||
|
||||
if (!IS_ENABLED(CONFIG_PTP_1588_CLOCK) ||
|
||||
!IS_ENABLED(CONFIG_NETWORK_PHY_TIMESTAMPING) ||
|
||||
of_property_read_bool(np, "lan8814,ignore-ts"))
|
||||
!IS_ENABLED(CONFIG_NETWORK_PHY_TIMESTAMPING))
|
||||
return 0;
|
||||
|
||||
/* Strap-in value for PHY address, below register read gives starting
|
||||
|
|
Loading…
Add table
Reference in a new issue