net: mscc: ocelot: fix timestamp info if ptp clock does not work
The timestamp info should be only software timestamp capabilities if ptp clock does not work. Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2b49d128b3
commit
d2b09a8e7b
|
@ -1349,6 +1349,12 @@ int ocelot_get_ts_info(struct ocelot *ocelot, int port,
|
||||||
{
|
{
|
||||||
info->phc_index = ocelot->ptp_clock ?
|
info->phc_index = ocelot->ptp_clock ?
|
||||||
ptp_clock_index(ocelot->ptp_clock) : -1;
|
ptp_clock_index(ocelot->ptp_clock) : -1;
|
||||||
|
if (info->phc_index == -1) {
|
||||||
|
info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
|
||||||
|
SOF_TIMESTAMPING_RX_SOFTWARE |
|
||||||
|
SOF_TIMESTAMPING_SOFTWARE;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
|
info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
|
||||||
SOF_TIMESTAMPING_RX_SOFTWARE |
|
SOF_TIMESTAMPING_RX_SOFTWARE |
|
||||||
SOF_TIMESTAMPING_SOFTWARE |
|
SOF_TIMESTAMPING_SOFTWARE |
|
||||||
|
|
Loading…
Reference in New Issue