diff for duplicates of <1048556321143@kroah.com> diff --git a/a/1.txt b/N1/1.txt index 7432905..a665a01 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -52,7 +52,7 @@ diff -Nru a/drivers/i2c/chips/adm1021.c b/drivers/i2c/chips/adm1021.c - struct adm1021_data *data = client->data; + struct adm1021_data *data = i2c_get_clientdata(client); - if (operation = SENSORS_PROC_REAL_INFO) + if (operation == SENSORS_PROC_REAL_INFO) *nrels_mag = 0; @@ -462,7 +461,7 @@ static void adm1021_remote_temp(struct i2c_client *client, int operation, @@ -62,7 +62,7 @@ diff -Nru a/drivers/i2c/chips/adm1021.c b/drivers/i2c/chips/adm1021.c + struct adm1021_data *data = i2c_get_clientdata(client); int prec = 0; - if (operation = SENSORS_PROC_REAL_INFO) + if (operation == SENSORS_PROC_REAL_INFO) @@ -535,7 +534,7 @@ static void adm1021_die_code(struct i2c_client *client, int operation, int ctl_name, int *nrels_mag, long *results) @@ -70,7 +70,7 @@ diff -Nru a/drivers/i2c/chips/adm1021.c b/drivers/i2c/chips/adm1021.c - struct adm1021_data *data = client->data; + struct adm1021_data *data = i2c_get_clientdata(client); - if (operation = SENSORS_PROC_REAL_INFO) + if (operation == SENSORS_PROC_REAL_INFO) *nrels_mag = 0; @@ -551,7 +550,7 @@ static void adm1021_alarms(struct i2c_client *client, int operation, @@ -78,9 +78,9 @@ diff -Nru a/drivers/i2c/chips/adm1021.c b/drivers/i2c/chips/adm1021.c { - struct adm1021_data *data = client->data; + struct adm1021_data *data = i2c_get_clientdata(client); - if (operation = SENSORS_PROC_REAL_INFO) + if (operation == SENSORS_PROC_REAL_INFO) *nrels_mag = 0; - else if (operation = SENSORS_PROC_REAL_READ) { + else if (operation == SENSORS_PROC_REAL_READ) { diff -Nru a/drivers/i2c/chips/lm75.c b/drivers/i2c/chips/lm75.c --- a/drivers/i2c/chips/lm75.c Mon Mar 24 17:28:15 2003 +++ b/drivers/i2c/chips/lm75.c Mon Mar 24 17:28:15 2003 @@ -118,9 +118,9 @@ diff -Nru a/drivers/i2c/chips/lm75.c b/drivers/i2c/chips/lm75.c { - struct lm75_data *data = client->data; + struct lm75_data *data = i2c_get_clientdata(client); - if (operation = SENSORS_PROC_REAL_INFO) + if (operation == SENSORS_PROC_REAL_INFO) *nrels_mag = 1; - else if (operation = SENSORS_PROC_REAL_READ) { + else if (operation == SENSORS_PROC_REAL_READ) { diff -Nru a/include/linux/i2c.h b/include/linux/i2c.h --- a/include/linux/i2c.h Mon Mar 24 17:28:15 2003 +++ b/include/linux/i2c.h Mon Mar 24 17:28:15 2003 diff --git a/a/content_digest b/N1/content_digest index 4b70165..06f5736 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,8 +1,7 @@ "ref\010485563201543@kroah.com\0" - "ref\010485563223599@kroah.com\0" - "From\0greg@kroah.com (Greg KH)\0" - "Subject\0[PATCH] i2c driver changes for 2.5.66\0" - "Date\0Thu, 19 May 2005 06:23:51 +0000\0" + "From\0Greg KH <greg@kroah.com>\0" + "Subject\0Re: [PATCH] i2c driver changes for 2.5.66\0" + "Date\0Mon, 24 Mar 2003 17:38 -0800\0" "To\0linux-kernel@vger.kernel.org" " sensors@stimpy.netroedge.com\0" "\00:1\0" @@ -61,7 +60,7 @@ "-\tstruct adm1021_data *data = client->data;\n" "+\tstruct adm1021_data *data = i2c_get_clientdata(client);\n" " \n" - " \tif (operation = SENSORS_PROC_REAL_INFO)\n" + " \tif (operation == SENSORS_PROC_REAL_INFO)\n" " \t\t*nrels_mag = 0;\n" "@@ -462,7 +461,7 @@\n" " static void adm1021_remote_temp(struct i2c_client *client, int operation,\n" @@ -71,7 +70,7 @@ "+\tstruct adm1021_data *data = i2c_get_clientdata(client);\n" " \tint prec = 0;\n" " \n" - " \tif (operation = SENSORS_PROC_REAL_INFO)\n" + " \tif (operation == SENSORS_PROC_REAL_INFO)\n" "@@ -535,7 +534,7 @@\n" " static void adm1021_die_code(struct i2c_client *client, int operation,\n" " \t\t\t int ctl_name, int *nrels_mag, long *results)\n" @@ -79,7 +78,7 @@ "-\tstruct adm1021_data *data = client->data;\n" "+\tstruct adm1021_data *data = i2c_get_clientdata(client);\n" " \n" - " \tif (operation = SENSORS_PROC_REAL_INFO)\n" + " \tif (operation == SENSORS_PROC_REAL_INFO)\n" " \t\t*nrels_mag = 0;\n" "@@ -551,7 +550,7 @@\n" " static void adm1021_alarms(struct i2c_client *client, int operation,\n" @@ -87,9 +86,9 @@ " {\n" "-\tstruct adm1021_data *data = client->data;\n" "+\tstruct adm1021_data *data = i2c_get_clientdata(client);\n" - " \tif (operation = SENSORS_PROC_REAL_INFO)\n" + " \tif (operation == SENSORS_PROC_REAL_INFO)\n" " \t\t*nrels_mag = 0;\n" - " \telse if (operation = SENSORS_PROC_REAL_READ) {\n" + " \telse if (operation == SENSORS_PROC_REAL_READ) {\n" "diff -Nru a/drivers/i2c/chips/lm75.c b/drivers/i2c/chips/lm75.c\n" "--- a/drivers/i2c/chips/lm75.c\tMon Mar 24 17:28:15 2003\n" "+++ b/drivers/i2c/chips/lm75.c\tMon Mar 24 17:28:15 2003\n" @@ -127,9 +126,9 @@ " {\n" "-\tstruct lm75_data *data = client->data;\n" "+\tstruct lm75_data *data = i2c_get_clientdata(client);\n" - " \tif (operation = SENSORS_PROC_REAL_INFO)\n" + " \tif (operation == SENSORS_PROC_REAL_INFO)\n" " \t\t*nrels_mag = 1;\n" - " \telse if (operation = SENSORS_PROC_REAL_READ) {\n" + " \telse if (operation == SENSORS_PROC_REAL_READ) {\n" "diff -Nru a/include/linux/i2c.h b/include/linux/i2c.h\n" "--- a/include/linux/i2c.h\tMon Mar 24 17:28:15 2003\n" "+++ b/include/linux/i2c.h\tMon Mar 24 17:28:15 2003\n" @@ -157,4 +156,4 @@ " /*\n" * The following structs are for those who like to implement new bus drivers: -634e6212f1bfbfadf88893d66c262c9b6d1dcb9acb03d16b933f21ebba6ecb27 +72c4d21c14d4b129be9efad9299be6abf97d79f965004c06e35c9035d6c3f474
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.