drivers: timer: fix MISRA 5.7 violation

A couple of drivers violated MISRA 5.7 rule (Tag name should be unique),
triggering CI compliance errors.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2021-11-04 15:57:33 +01:00 committed by Anas Nashif
commit 493b6786ab
2 changed files with 4 additions and 4 deletions

View file

@ -110,9 +110,9 @@ uint64_t sys_clock_cycle_get_64(void)
return OSTIMER_GetCurrentTimerValue(base);
}
static int sys_clock_driver_init(const struct device *device)
static int sys_clock_driver_init(const struct device *dev)
{
ARG_UNUSED(device);
ARG_UNUSED(dev);
/* Configure event timer's ISR */
IRQ_CONNECT(DT_INST_IRQN(0), DT_INST_IRQ(0, priority),