Browse Source

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>
Geliang Tang 9 years ago
parent
commit
43584c1d42
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fs/jffs2/wbuf.c

+ 1 - 1
fs/jffs2/wbuf.c

@@ -1153,7 +1153,7 @@ static struct jffs2_sb_info *work_to_sb(struct work_struct *work)
 {
 	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);
 }