Commit 6536c49a authored by Ben Dooks's avatar Ben Dooks Committed by Greg Kroah-Hartman

[PATCH] i2c: Static function fixes, 1 of 4

eeprom_detect is first declared static and then when
the function is actually implemented, there is no static.
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 2445eb62
...@@ -155,7 +155,7 @@ static int eeprom_attach_adapter(struct i2c_adapter *adapter) ...@@ -155,7 +155,7 @@ static int eeprom_attach_adapter(struct i2c_adapter *adapter)
} }
/* This function is called by i2c_probe */ /* This function is called by i2c_probe */
int eeprom_detect(struct i2c_adapter *adapter, int address, int kind) static int eeprom_detect(struct i2c_adapter *adapter, int address, int kind)
{ {
struct i2c_client *new_client; struct i2c_client *new_client;
struct eeprom_data *data; struct eeprom_data *data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment