net: ethernet: ti: cpts: use dev_yy() api for logs
Use dev_yy() API instead of pr_yy() for log outputs. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Acked-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c532b144f
commit
79d6e755a4
|
@ -71,7 +71,7 @@ static int cpts_purge_events(struct cpts *cpts)
|
|||
}
|
||||
|
||||
if (removed)
|
||||
pr_debug("cpts: event pool cleaned up %d\n", removed);
|
||||
dev_dbg(cpts->dev, "cpts: event pool cleaned up %d\n", removed);
|
||||
return removed ? 0 : -1;
|
||||
}
|
||||
|
||||
|
@ -150,7 +150,7 @@ static int cpts_fifo_read(struct cpts *cpts, int match)
|
|||
break;
|
||||
|
||||
if (list_empty(&cpts->pool) && cpts_purge_events(cpts)) {
|
||||
pr_err("cpts: event pool empty\n");
|
||||
dev_warn(cpts->dev, "cpts: event pool empty\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -178,7 +178,7 @@ static int cpts_fifo_read(struct cpts *cpts, int match)
|
|||
case CPTS_EV_HW:
|
||||
break;
|
||||
default:
|
||||
pr_err("cpts: unknown event type\n");
|
||||
dev_err(cpts->dev, "cpts: unknown event type\n");
|
||||
break;
|
||||
}
|
||||
if (type == match)
|
||||
|
@ -196,7 +196,7 @@ static u64 cpts_systim_read(const struct cyclecounter *cc)
|
|||
|
||||
cpts_write32(cpts, TS_PUSH, ts_push);
|
||||
if (cpts_fifo_read(cpts, CPTS_EV_PUSH))
|
||||
pr_err("cpts: unable to obtain a time stamp\n");
|
||||
dev_err(cpts->dev, "cpts: unable to obtain a time stamp\n");
|
||||
|
||||
list_for_each_safe(this, next, &cpts->events) {
|
||||
event = list_entry(this, struct cpts_event, list);
|
||||
|
@ -307,7 +307,7 @@ static long cpts_overflow_check(struct ptp_clock_info *ptp)
|
|||
}
|
||||
spin_unlock_irqrestore(&cpts->lock, flags);
|
||||
|
||||
pr_debug("cpts overflow check at %lld.%09ld\n",
|
||||
dev_dbg(cpts->dev, "cpts overflow check at %lld.%09ld\n",
|
||||
(long long)ts.tv_sec, ts.tv_nsec);
|
||||
return (long)delay;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue