diff options
| author | Markus Lidel <markus.lidel@shadowconnect.com> | 2004-11-15 04:12:13 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-11-15 04:12:13 -0800 |
| commit | 1e0fa7a2dbdf88eb0bdf95ee17bf7cc3d8663da1 (patch) | |
| tree | 340966043e304345d57f5b022adbd60ccb330480 /drivers/message/i2o/exec-osm.c | |
| parent | 1163d2c331b166bb234ae7100b7883cbcda3e136 (diff) | |
[PATCH] i2o: remove unused code and make needlessly global code static
- remove unused code
- make needlessly global code static
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: 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/message/i2o/exec-osm.c')
| -rw-r--r-- | drivers/message/i2o/exec-osm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/message/i2o/exec-osm.c b/drivers/message/i2o/exec-osm.c index 6d865f89642f..34aece2864d2 100644 --- a/drivers/message/i2o/exec-osm.c +++ b/drivers/message/i2o/exec-osm.c @@ -33,6 +33,8 @@ struct i2o_driver i2o_exec_driver; +static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind); + /* Module internal functions from other sources */ extern int i2o_device_parse_lct(struct i2o_controller *); @@ -436,7 +438,7 @@ int i2o_exec_lct_get(struct i2o_controller *c) * replies immediately after the request. If change_ind > 0 the reply is * send after change indicator of the LCT is > change_ind. */ -int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind) +static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind) { i2o_status_block *sb = c->status_block.virt; struct device *dev; @@ -503,4 +505,3 @@ void __exit i2o_exec_exit(void) EXPORT_SYMBOL(i2o_msg_post_wait_mem); EXPORT_SYMBOL(i2o_exec_lct_get); -EXPORT_SYMBOL(i2o_exec_lct_notify); |
