提交 c49efcef 编写于 作者: B Ben Dooks 提交者: Greg Kroah-Hartman

[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: NBen Dooks <ben-linux@fluff.org>
Signed-off-by: NJean Delvare <khali@linux-fr.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 d8d20615
...@@ -315,7 +315,7 @@ static struct i2c_driver adm1026_driver = { ...@@ -315,7 +315,7 @@ static struct i2c_driver adm1026_driver = {
.detach_client = adm1026_detach_client, .detach_client = adm1026_detach_client,
}; };
int adm1026_attach_adapter(struct i2c_adapter *adapter) static int adm1026_attach_adapter(struct i2c_adapter *adapter)
{ {
if (!(adapter->class & I2C_CLASS_HWMON)) { if (!(adapter->class & I2C_CLASS_HWMON)) {
return 0; return 0;
...@@ -323,7 +323,7 @@ int adm1026_attach_adapter(struct i2c_adapter *adapter) ...@@ -323,7 +323,7 @@ int adm1026_attach_adapter(struct i2c_adapter *adapter)
return i2c_probe(adapter, &addr_data, adm1026_detect); return i2c_probe(adapter, &addr_data, adm1026_detect);
} }
int adm1026_detach_client(struct i2c_client *client) static int adm1026_detach_client(struct i2c_client *client)
{ {
struct adm1026_data *data = i2c_get_clientdata(client); struct adm1026_data *data = i2c_get_clientdata(client);
hwmon_device_unregister(data->class_dev); hwmon_device_unregister(data->class_dev);
...@@ -332,7 +332,7 @@ int adm1026_detach_client(struct i2c_client *client) ...@@ -332,7 +332,7 @@ int adm1026_detach_client(struct i2c_client *client)
return 0; return 0;
} }
int adm1026_read_value(struct i2c_client *client, u8 reg) static int adm1026_read_value(struct i2c_client *client, u8 reg)
{ {
int res; int res;
...@@ -346,7 +346,7 @@ int adm1026_read_value(struct i2c_client *client, u8 reg) ...@@ -346,7 +346,7 @@ int adm1026_read_value(struct i2c_client *client, u8 reg)
return res; return res;
} }
int adm1026_write_value(struct i2c_client *client, u8 reg, int value) static int adm1026_write_value(struct i2c_client *client, u8 reg, int value)
{ {
int res; int res;
...@@ -360,7 +360,7 @@ int adm1026_write_value(struct i2c_client *client, u8 reg, int value) ...@@ -360,7 +360,7 @@ int adm1026_write_value(struct i2c_client *client, u8 reg, int value)
return res; return res;
} }
void adm1026_init_client(struct i2c_client *client) static void adm1026_init_client(struct i2c_client *client)
{ {
int value, i; int value, i;
struct adm1026_data *data = i2c_get_clientdata(client); struct adm1026_data *data = i2c_get_clientdata(client);
...@@ -460,7 +460,7 @@ void adm1026_init_client(struct i2c_client *client) ...@@ -460,7 +460,7 @@ void adm1026_init_client(struct i2c_client *client)
} }
} }
void adm1026_print_gpio(struct i2c_client *client) static void adm1026_print_gpio(struct i2c_client *client)
{ {
struct adm1026_data *data = i2c_get_clientdata(client); struct adm1026_data *data = i2c_get_clientdata(client);
int i; int i;
...@@ -492,7 +492,7 @@ void adm1026_print_gpio(struct i2c_client *client) ...@@ -492,7 +492,7 @@ void adm1026_print_gpio(struct i2c_client *client)
} }
} }
void adm1026_fixup_gpio(struct i2c_client *client) static void adm1026_fixup_gpio(struct i2c_client *client)
{ {
struct adm1026_data *data = i2c_get_clientdata(client); struct adm1026_data *data = i2c_get_clientdata(client);
int i; int i;
...@@ -1452,8 +1452,8 @@ static DEVICE_ATTR(temp1_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL); ...@@ -1452,8 +1452,8 @@ static DEVICE_ATTR(temp1_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL);
static DEVICE_ATTR(temp2_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL); static DEVICE_ATTR(temp2_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL);
static DEVICE_ATTR(temp3_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL); static DEVICE_ATTR(temp3_auto_point2_pwm, S_IRUGO, show_auto_pwm_max, NULL);
int adm1026_detect(struct i2c_adapter *adapter, int address, static int adm1026_detect(struct i2c_adapter *adapter, int address,
int kind) int kind)
{ {
int company, verstep; int company, verstep;
struct i2c_client *new_client; struct i2c_client *new_client;
......
...@@ -186,8 +186,8 @@ static int ds1621_attach_adapter(struct i2c_adapter *adapter) ...@@ -186,8 +186,8 @@ static int ds1621_attach_adapter(struct i2c_adapter *adapter)
} }
/* This function is called by i2c_probe */ /* This function is called by i2c_probe */
int ds1621_detect(struct i2c_adapter *adapter, int address, static int ds1621_detect(struct i2c_adapter *adapter, int address,
int kind) int kind)
{ {
int conf, temp; int conf, temp;
struct i2c_client *new_client; struct i2c_client *new_client;
......
...@@ -438,7 +438,7 @@ static int fscpos_attach_adapter(struct i2c_adapter *adapter) ...@@ -438,7 +438,7 @@ static int fscpos_attach_adapter(struct i2c_adapter *adapter)
return i2c_probe(adapter, &addr_data, fscpos_detect); return i2c_probe(adapter, &addr_data, fscpos_detect);
} }
int fscpos_detect(struct i2c_adapter *adapter, int address, int kind) static int fscpos_detect(struct i2c_adapter *adapter, int address, int kind)
{ {
struct i2c_client *new_client; struct i2c_client *new_client;
struct fscpos_data *data; struct fscpos_data *data;
......
...@@ -738,7 +738,7 @@ static int __init it87_find(unsigned short *address) ...@@ -738,7 +738,7 @@ static int __init it87_find(unsigned short *address)
} }
/* This function is called by i2c_probe */ /* This function is called by i2c_probe */
int it87_detect(struct i2c_adapter *adapter, int address, int kind) static int it87_detect(struct i2c_adapter *adapter, int address, int kind)
{ {
int i; int i;
struct i2c_client *new_client; struct i2c_client *new_client;
......
...@@ -393,7 +393,7 @@ static int lm80_attach_adapter(struct i2c_adapter *adapter) ...@@ -393,7 +393,7 @@ static int lm80_attach_adapter(struct i2c_adapter *adapter)
return i2c_probe(adapter, &addr_data, lm80_detect); return i2c_probe(adapter, &addr_data, lm80_detect);
} }
int lm80_detect(struct i2c_adapter *adapter, int address, int kind) static int lm80_detect(struct i2c_adapter *adapter, int address, int kind)
{ {
int i, cur; int i, cur;
struct i2c_client *new_client; struct i2c_client *new_client;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册