summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/boot/kshim/bsd_kernel.c12
-rw-r--r--sys/boot/kshim/bsd_kernel.h4
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/boot/kshim/bsd_kernel.c b/sys/boot/kshim/bsd_kernel.c
index ccdec49..36a6d82 100644
--- a/sys/boot/kshim/bsd_kernel.c
+++ b/sys/boot/kshim/bsd_kernel.c
@@ -432,8 +432,8 @@ callout_callback(struct callout *c)
}
mtx_unlock(&mtx_callout);
- if (c->func)
- (c->func) (c->arg);
+ if (c->c_func != NULL)
+ (c->c_func) (c->c_arg);
if (!(c->flags & CALLOUT_RETURNUNLOCKED))
mtx_unlock(c->mtx);
@@ -487,8 +487,8 @@ callout_reset(struct callout *c, int to_ticks,
{
callout_stop(c);
- c->func = func;
- c->arg = arg;
+ c->c_func = func;
+ c->c_arg = arg;
c->timeout = ticks + to_ticks;
mtx_lock(&mtx_callout);
@@ -507,8 +507,8 @@ callout_stop(struct callout *c)
}
mtx_unlock(&mtx_callout);
- c->func = NULL;
- c->arg = NULL;
+ c->c_func = NULL;
+ c->c_arg = NULL;
}
void
diff --git a/sys/boot/kshim/bsd_kernel.h b/sys/boot/kshim/bsd_kernel.h
index 6645c62..66106ac 100644
--- a/sys/boot/kshim/bsd_kernel.h
+++ b/sys/boot/kshim/bsd_kernel.h
@@ -299,8 +299,8 @@ extern volatile int ticks;
struct callout {
LIST_ENTRY(callout) entry;
- callout_fn_t *func;
- void *arg;
+ callout_fn_t *c_func;
+ void *c_arg;
struct mtx *mtx;
int flags;
int timeout;
OpenPOWER on IntegriCloud