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/ds1621.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/ds1621.c')
-rw-r--r-- | drivers/hwmon/ds1621.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/ds1621.c b/drivers/hwmon/ds1621.c index c5afa0058308..34f71b7c7f37 100644 --- a/drivers/hwmon/ds1621.c +++ b/drivers/hwmon/ds1621.c | |||
@@ -186,8 +186,8 @@ static int ds1621_attach_adapter(struct i2c_adapter *adapter) | |||
186 | } | 186 | } |
187 | 187 | ||
188 | /* This function is called by i2c_probe */ | 188 | /* This function is called by i2c_probe */ |
189 | int ds1621_detect(struct i2c_adapter *adapter, int address, | 189 | static int ds1621_detect(struct i2c_adapter *adapter, int address, |
190 | int kind) | 190 | int kind) |
191 | { | 191 | { |
192 | int conf, temp; | 192 | int conf, temp; |
193 | struct i2c_client *new_client; | 193 | struct i2c_client *new_client; |