diff options
author | Ben Dooks <ben-linux@fluff.org> | 2005-10-26 15:07:25 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 17:02:13 -0400 |
commit | c49efceffa599299ab3f38b1cdf8c2f1bf9811c4 (patch) | |
tree | e7b0124f85ad5563875c92679545f4c2fb38c956 /drivers/hwmon/fscpos.c | |
parent | d8d2061590c87c20bf78133461bc74df78803ecb (diff) |
[PATCH] hwmon: Static function fixes, 3 of 4
Fixup functions that have been declared static
and then actually defined without the static on.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/hwmon/fscpos.c')
-rw-r--r-- | drivers/hwmon/fscpos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/fscpos.c b/drivers/hwmon/fscpos.c index a378e4f5c93b..64e4edc64f8d 100644 --- a/drivers/hwmon/fscpos.c +++ b/drivers/hwmon/fscpos.c | |||
@@ -438,7 +438,7 @@ static int fscpos_attach_adapter(struct i2c_adapter *adapter) | |||
438 | return i2c_probe(adapter, &addr_data, fscpos_detect); | 438 | return i2c_probe(adapter, &addr_data, fscpos_detect); |
439 | } | 439 | } |
440 | 440 | ||
441 | int fscpos_detect(struct i2c_adapter *adapter, int address, int kind) | 441 | static int fscpos_detect(struct i2c_adapter *adapter, int address, int kind) |
442 | { | 442 | { |
443 | struct i2c_client *new_client; | 443 | struct i2c_client *new_client; |
444 | struct fscpos_data *data; | 444 | struct fscpos_data *data; |