diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-30 14:26:53 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-12-30 14:26:53 +0100 |
commit | f89bea78b8b3ef3afa82e065bf307a4ec4e7af63 (patch) | |
tree | 463a479ea88e9b82858a64fcf6f94d052abf845c | |
parent | e596f552a90504d7ba49dd75db0ce40eda33f60c (diff) | |
download | ldd3-f89bea78b8b3ef3afa82e065bf307a4ec4e7af63.tar.gz |
short: Remove third argument to INIT_WORK
-rw-r--r-- | short/short.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/short/short.c b/short/short.c index 5dd907b..4dc1a4b 100644 --- a/short/short.c +++ b/short/short.c @@ -593,7 +593,7 @@ int short_init(void) * (unused) argument. */ /* this line is in short_init() */ - INIT_WORK(&short_wq, (void (*)(void *)) short_do_tasklet, NULL); + INIT_WORK(&short_wq, (void (*)(void *)) short_do_tasklet); /* * Now we deal with the interrupt: either kernel-based |