diff --git a/kernel/chips/adm1021.c b/kernel/chips/adm1021.c index ef1c113d..091d8c1e 100644 --- a/kernel/chips/adm1021.c +++ b/kernel/chips/adm1021.c @@ -177,9 +177,6 @@ static ctl_table adm1021_max_dir_table_template[] = { {0} }; -/* I choose here for semi-static allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int adm1021_id = 0; static int adm1021_attach_adapter(struct i2c_adapter *adapter) diff --git a/kernel/chips/adm1024.c b/kernel/chips/adm1024.c index a20191cd..4ff808c1 100644 --- a/kernel/chips/adm1024.c +++ b/kernel/chips/adm1024.c @@ -209,9 +209,6 @@ static void adm1024_analog_out(struct i2c_client *client, int operation, static void adm1024_vid(struct i2c_client *client, int operation, int ctl_name, int *nrels_mag, long *results); -/* I choose here for semi-static ADM1024 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int adm1024_id = 0; static struct i2c_driver adm1024_driver = { diff --git a/kernel/chips/adm1025.c b/kernel/chips/adm1025.c index c173bd3e..8a5e010a 100644 --- a/kernel/chips/adm1025.c +++ b/kernel/chips/adm1025.c @@ -156,9 +156,6 @@ static void adm1025_vid(struct i2c_client *client, int operation, static void adm1025_vrm(struct i2c_client *client, int operation, int ctl_name, int *nrels_mag, long *results); -/* I choose here for semi-static ADM1025 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int adm1025_id = 0; static struct i2c_driver adm1025_driver = { diff --git a/kernel/chips/adm9240.c b/kernel/chips/adm9240.c index ec38051f..3f605f24 100644 --- a/kernel/chips/adm9240.c +++ b/kernel/chips/adm9240.c @@ -214,9 +214,6 @@ static void adm9240_analog_out(struct i2c_client *client, int operation, static void adm9240_vid(struct i2c_client *client, int operation, int ctl_name, int *nrels_mag, long *results); -/* I choose here for semi-static ADM9240 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int adm9240_id = 0; static struct i2c_driver adm9240_driver = { diff --git a/kernel/chips/gl520sm.c b/kernel/chips/gl520sm.c index c738c311..40914d53 100644 --- a/kernel/chips/gl520sm.c +++ b/kernel/chips/gl520sm.c @@ -248,9 +248,6 @@ static ctl_table gl520_dir_table_template[] = { {0} }; -/* I choose here for semi-static GL520SM allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int gl520_id = 0; static int gl520_attach_adapter(struct i2c_adapter *adapter) diff --git a/kernel/chips/lm87.c b/kernel/chips/lm87.c index 1882cf8e..e8d936af 100644 --- a/kernel/chips/lm87.c +++ b/kernel/chips/lm87.c @@ -266,9 +266,6 @@ static void lm87_vid(struct i2c_client *client, int operation, static void lm87_vrm(struct i2c_client *client, int operation, int ctl_name, int *nrels_mag, long *results); -/* I choose here for semi-static LM87 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int lm87_id = 0; static struct i2c_driver LM87_driver = { diff --git a/kernel/chips/ltc1710.c b/kernel/chips/ltc1710.c index e1a8e5c5..016a55f9 100644 --- a/kernel/chips/ltc1710.c +++ b/kernel/chips/ltc1710.c @@ -119,9 +119,6 @@ static ctl_table ltc1710_dir_table_template[] = { {0} }; -/* I choose here for semi-static LTC1710 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int ltc1710_id = 0; static int ltc1710_attach_adapter(struct i2c_adapter *adapter) diff --git a/kernel/chips/saa1064.c b/kernel/chips/saa1064.c index e7c191ae..cf715e99 100644 --- a/kernel/chips/saa1064.c +++ b/kernel/chips/saa1064.c @@ -184,9 +184,6 @@ static ctl_table saa1064_dir_table_template[] = { {0} }; -/* I choose here for semi-static SAA1064 allocation. Complete dynamic - allocation could also be used; the code needed for this would probably - take more memory than the datastructure takes now. */ static int saa1064_id = 0; static int saa1064_attach_adapter(struct i2c_adapter *adapter)