diff options
author | Adrian Bunk | 2006-07-10 13:45:40 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-07-10 22:24:26 +0200 |
commit | e62c23c751b5136ed52ac324ecf78a814e2d2fe3 (patch) | |
tree | c6b6d97eb4dd22685eefb89e3d48f1dbe342f7e3 /drivers | |
parent | [PATCH] remove the tasklist_lock export (diff) | |
download | kernel-qcow2-linux-e62c23c751b5136ed52ac324ecf78a814e2d2fe3.tar.gz kernel-qcow2-linux-e62c23c751b5136ed52ac324ecf78a814e2d2fe3.tar.xz kernel-qcow2-linux-e62c23c751b5136ed52ac324ecf78a814e2d2fe3.zip |
[PATCH] proper prototype for drivers/message/i2o/device.c:i2o_parm_issue()
Add a proper prototype for i2o_parm_issue() in core.h.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Markus Lidel <Markus.Lidel@shadowconnect.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/message/i2o/core.h | 3 | ||||
-rw-r--r-- | drivers/message/i2o/i2o_config.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/drivers/message/i2o/core.h b/drivers/message/i2o/core.h index 184974cc734d..dc388a3ff5e0 100644 --- a/drivers/message/i2o/core.h +++ b/drivers/message/i2o/core.h @@ -38,6 +38,9 @@ extern struct device_attribute i2o_device_attrs[]; extern void i2o_device_remove(struct i2o_device *); extern int i2o_device_parse_lct(struct i2o_controller *); +int i2o_parm_issue(struct i2o_device *i2o_dev, int cmd, void *oplist, + int oplen, void *reslist, int reslen); + /* IOP */ extern struct i2o_controller *i2o_iop_alloc(void); diff --git a/drivers/message/i2o/i2o_config.c b/drivers/message/i2o/i2o_config.c index 89daf67b764d..7d23e082bf26 100644 --- a/drivers/message/i2o/i2o_config.c +++ b/drivers/message/i2o/i2o_config.c @@ -36,9 +36,9 @@ #include <asm/uaccess.h> -#define SG_TABLESIZE 30 +#include "core.h" -extern int i2o_parm_issue(struct i2o_device *, int, void *, int, void *, int); +#define SG_TABLESIZE 30 static int i2o_cfg_ioctl(struct inode *, struct file *, unsigned int, unsigned long); |