Skip to content
Snippets Groups Projects
Commit 3921be5a authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix compat hacks for init_work

SVN-Revision: 6253
parent 1f8d4398
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,9 @@ struct delayed_work {
};
#define INIT_DELAYED_WORK(_work, _func) \
INIT_WORK(&(_work)->work, _func, NULL)
INIT_WORK(&(_work)->work, _func, &(_work)->work)
#define INIT_WORK_NEW(_work, _func) INIT_WORK(_work, _func, NULL)
#define INIT_WORK_NEW(_work, _func) INIT_WORK(_work, _func, _work)
#define schedule_delayed_work(_work, interval) schedule_delayed_work(&(_work)->work, interval)
#define cancel_delayed_work(_work) cancel_delayed_work(&(_work)->work)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment