diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-12-23 21:54:14 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-01-14 10:38:57 +0100 |
commit | f186aa976bab11130af7299b07f7fafd258a63f1 (patch) | |
tree | 514d36f3872f7eaab3600d7a6f94e0e48eec1fed /include/block/aio.h | |
parent | 488eef2f1d16c97cf7f9ebf644ecafa1ea1e9acc (diff) |
qemu-timer: rename timer_init to timer_init_tl
timer_init is not called that often. Free the name for an equivalent
of timer_new.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/block/aio.h')
-rw-r--r-- | include/block/aio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/block/aio.h b/include/block/aio.h index 6bf0e0456a..7d1e26b33b 100644 --- a/include/block/aio.h +++ b/include/block/aio.h @@ -314,7 +314,7 @@ static inline void aio_timer_init(AioContext *ctx, int scale, QEMUTimerCB *cb, void *opaque) { - timer_init(ts, ctx->tlg.tl[type], scale, cb, opaque); + timer_init_tl(ts, ctx->tlg.tl[type], scale, cb, opaque); } /** |