drivers: Check and fix device const qualifier on ISR
Re-running the script that checks for the const qualifier missing on struct device ISR's parameter. The script also changes the parameter 'arg' to 'dev' when relevant. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
521c9d13fb
commit
9a18fdea3f
22 changed files with 77 additions and 96 deletions
|
@ -25,7 +25,7 @@ static struct k_spinlock lock;
|
|||
static uint64_t last_count;
|
||||
static OSTIMER_Type *base;
|
||||
|
||||
void mcux_lpc_ostick_isr(void *arg)
|
||||
void mcux_lpc_ostick_isr(const void *arg)
|
||||
{
|
||||
ARG_UNUSED(arg);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue