jffs2: use to_delayed_work
Use to_delayed_work() instead of open-coding it. Signed-off-by: Geliang Tang <geliangtang@163.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
f7a8e38f07
commit
43584c1d42
@ -1153,7 +1153,7 @@ static struct jffs2_sb_info *work_to_sb(struct work_struct *work)
|
|||||||
{
|
{
|
||||||
struct delayed_work *dwork;
|
struct delayed_work *dwork;
|
||||||
|
|
||||||
dwork = container_of(work, struct delayed_work, work);
|
dwork = to_delayed_work(work);
|
||||||
return container_of(dwork, struct jffs2_sb_info, wbuf_dwork);
|
return container_of(dwork, struct jffs2_sb_info, wbuf_dwork);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user