Module Name: src
Committed By: riastradh
Date: Wed Jul 24 02:09:43 UTC 2013
Modified Files:
src/sys/external/bsd/drm2/include/linux [riastradh-drm2]: workqueue.h
Log Message:
Fix signature of INIT_DELAYED_WORK.
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.3 -r1.1.2.4 \
src/sys/external/bsd/drm2/include/linux/workqueue.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/external/bsd/drm2/include/linux/workqueue.h
diff -u src/sys/external/bsd/drm2/include/linux/workqueue.h:1.1.2.3 src/sys/external/bsd/drm2/include/linux/workqueue.h:1.1.2.4
--- src/sys/external/bsd/drm2/include/linux/workqueue.h:1.1.2.3 Wed Jul 24 01:53:40 2013
+++ src/sys/external/bsd/drm2/include/linux/workqueue.h Wed Jul 24 02:09:43 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: workqueue.h,v 1.1.2.3 2013/07/24 01:53:40 riastradh Exp $ */
+/* $NetBSD: workqueue.h,v 1.1.2.4 2013/07/24 02:09:43 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -51,7 +51,7 @@ struct delayed_work {
};
static inline void
-INIT_DELAYED_WORK(struct delayed_work *dw, void (*fn)(struct delayed_work *))
+INIT_DELAYED_WORK(struct delayed_work *dw, void (*fn)(struct work_struct *))
{
callout_init(&dw->dw_work.ws_callout, 0);