diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-08 02:28:16 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-08 02:28:16 +0100 |
commit | 21e7e3cca0c5a1ef7b3e5a9c85df05c92f23596f (patch) | |
tree | 336d8f58268c2008879a15259ebc338a008416e0 | |
parent | 699997a47110067a1ea63df6d690178f97b5b83d (diff) | |
download | ldd3-21e7e3cca0c5a1ef7b3e5a9c85df05c92f23596f.tar.gz |
shortprint: Remove third argument from macro DECLARE_WORK()
-rw-r--r-- | shortprint/shortprint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shortprint/shortprint.c b/shortprint/shortprint.c index e0cffd1..17eebeb 100644 --- a/shortprint/shortprint.c +++ b/shortprint/shortprint.c @@ -108,7 +108,7 @@ static DECLARE_WAIT_QUEUE_HEAD(shortp_out_queue); * workqueue. */ static void shortp_do_work(void *); -static DECLARE_WORK(shortp_work, shortp_do_work, NULL); +static DECLARE_WORK(shortp_work, shortp_do_work); static struct workqueue_struct *shortp_workqueue; /* |