All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <107939139416@kroah.com>

diff --git a/a/1.txt b/N1/1.txt
index fe40323..daf5b72 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -39,10 +39,10 @@ diff -Nru a/drivers/i2c/chips/gl518sm.c b/drivers/i2c/chips/gl518sm.c
  				     I2C_FUNC_SMBUS_WORD_DATA))
 @@ -385,10 +384,8 @@
  		i = gl518_read_value(new_client, GL518_REG_REVISION);
- 		if (i = 0x00) {
+ 		if (i == 0x00) {
  			kind = gl518sm_r00;
 -			name = "gl518sm";
- 		} else if (i = 0x80) {
+ 		} else if (i == 0x80) {
  			kind = gl518sm_r80;
 -			name = "gl518sm";
  		} else {
@@ -61,8 +61,8 @@ diff -Nru a/drivers/i2c/chips/lm83.c b/drivers/i2c/chips/lm83.c
 --- a/drivers/i2c/chips/lm83.c	Mon Mar 15 14:34:09 2004
 +++ b/drivers/i2c/chips/lm83.c	Mon Mar 15 14:34:09 2004
 @@ -284,7 +284,6 @@
- 		if (man_id = 0x01) { /* National Semiconductor */
- 			if (chip_id = 0x03) {
+ 		if (man_id == 0x01) { /* National Semiconductor */
+ 			if (chip_id == 0x03) {
  				kind = lm83;
 -				name = "lm83";
  			}
@@ -74,7 +74,7 @@ diff -Nru a/drivers/i2c/chips/lm83.c b/drivers/i2c/chips/lm83.c
  		}
 +	}
 +
-+	if (kind = lm83) {
++	if (kind == lm83) {
 +		name = "lm83";
  	}
  
@@ -83,16 +83,16 @@ diff -Nru a/drivers/i2c/chips/lm90.c b/drivers/i2c/chips/lm90.c
 --- a/drivers/i2c/chips/lm90.c	Mon Mar 15 14:34:09 2004
 +++ b/drivers/i2c/chips/lm90.c	Mon Mar 15 14:34:09 2004
 @@ -337,7 +337,6 @@
- 				LM90_REG_R_CONFIG2) & 0xF8) = 0x00
+ 				LM90_REG_R_CONFIG2) & 0xF8) == 0x00
  			   && reg_convrate <= 0x09))) {
  				kind = lm90;
 -				name = "lm90";
  			}
  		}
- 		else if (man_id = 0x41) { /* Analog Devices */
+ 		else if (man_id == 0x41) { /* Analog Devices */
 @@ -345,7 +344,6 @@
- 			 && (kind = 0 /* skip detection */
- 			  || (reg_config1 & 0x3F) = 0x00)) {
+ 			 && (kind == 0 /* skip detection */
+ 			  || (reg_config1 & 0x3F) == 0x00)) {
  				kind = adm1032;
 -				name = "adm1032";
  			}
@@ -104,9 +104,9 @@ diff -Nru a/drivers/i2c/chips/lm90.c b/drivers/i2c/chips/lm90.c
  		}
 +	}
 +
-+	if (kind = lm90) {
++	if (kind == lm90) {
 +		name = "lm90";
-+	} else if (kind = adm1032) {
++	} else if (kind == adm1032) {
 +		name = "adm1032";
  	}
  
@@ -123,8 +123,8 @@ diff -Nru a/drivers/i2c/chips/w83l785ts.c b/drivers/i2c/chips/w83l785ts.c
  
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
 @@ -220,7 +219,6 @@
- 		if (man_id = 0x5CA3) { /* Winbond */
- 			if (chip_id = 0x70) { /* W83L785TS-S */
+ 		if (man_id == 0x5CA3) { /* Winbond */
+ 			if (chip_id == 0x70) { /* W83L785TS-S */
  				kind = w83l785ts;			
 -				name = "w83l785ts";
  			}
diff --git a/a/content_digest b/N1/content_digest
index 73e02bd..8a393e3 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,8 +1,7 @@
  "ref\01079391394165@kroah.com\0"
- "ref\010793913903814@kroah.com\0"
- "From\0greg@kroah.com (Greg KH)\0"
- "Subject\0[PATCH] i2c driver fixes for 2.6.4\0"
- "Date\0Thu, 19 May 2005 06:24:48 +0000\0"
+ "From\0Greg KH <greg@kroah.com>\0"
+ "Subject\0Re: [PATCH] i2c driver fixes for 2.6.4\0"
+ "Date\0Mon, 15 Mar 2004 14:56:34 -0800\0"
  "To\0linux-kernel@vger.kernel.org"
  " sensors@stimpy.netroedge.com\0"
  "\00:1\0"
@@ -48,10 +47,10 @@
  " \t\t\t\t     I2C_FUNC_SMBUS_WORD_DATA))\n"
  "@@ -385,10 +384,8 @@\n"
  " \t\ti = gl518_read_value(new_client, GL518_REG_REVISION);\n"
- " \t\tif (i = 0x00) {\n"
+ " \t\tif (i == 0x00) {\n"
  " \t\t\tkind = gl518sm_r00;\n"
  "-\t\t\tname = \"gl518sm\";\n"
- " \t\t} else if (i = 0x80) {\n"
+ " \t\t} else if (i == 0x80) {\n"
  " \t\t\tkind = gl518sm_r80;\n"
  "-\t\t\tname = \"gl518sm\";\n"
  " \t\t} else {\n"
@@ -70,8 +69,8 @@
  "--- a/drivers/i2c/chips/lm83.c\tMon Mar 15 14:34:09 2004\n"
  "+++ b/drivers/i2c/chips/lm83.c\tMon Mar 15 14:34:09 2004\n"
  "@@ -284,7 +284,6 @@\n"
- " \t\tif (man_id = 0x01) { /* National Semiconductor */\n"
- " \t\t\tif (chip_id = 0x03) {\n"
+ " \t\tif (man_id == 0x01) { /* National Semiconductor */\n"
+ " \t\t\tif (chip_id == 0x03) {\n"
  " \t\t\t\tkind = lm83;\n"
  "-\t\t\t\tname = \"lm83\";\n"
  " \t\t\t}\n"
@@ -83,7 +82,7 @@
  " \t\t}\n"
  "+\t}\n"
  "+\n"
- "+\tif (kind = lm83) {\n"
+ "+\tif (kind == lm83) {\n"
  "+\t\tname = \"lm83\";\n"
  " \t}\n"
  " \n"
@@ -92,16 +91,16 @@
  "--- a/drivers/i2c/chips/lm90.c\tMon Mar 15 14:34:09 2004\n"
  "+++ b/drivers/i2c/chips/lm90.c\tMon Mar 15 14:34:09 2004\n"
  "@@ -337,7 +337,6 @@\n"
- " \t\t\t\tLM90_REG_R_CONFIG2) & 0xF8) = 0x00\n"
+ " \t\t\t\tLM90_REG_R_CONFIG2) & 0xF8) == 0x00\n"
  " \t\t\t   && reg_convrate <= 0x09))) {\n"
  " \t\t\t\tkind = lm90;\n"
  "-\t\t\t\tname = \"lm90\";\n"
  " \t\t\t}\n"
  " \t\t}\n"
- " \t\telse if (man_id = 0x41) { /* Analog Devices */\n"
+ " \t\telse if (man_id == 0x41) { /* Analog Devices */\n"
  "@@ -345,7 +344,6 @@\n"
- " \t\t\t && (kind = 0 /* skip detection */\n"
- " \t\t\t  || (reg_config1 & 0x3F) = 0x00)) {\n"
+ " \t\t\t && (kind == 0 /* skip detection */\n"
+ " \t\t\t  || (reg_config1 & 0x3F) == 0x00)) {\n"
  " \t\t\t\tkind = adm1032;\n"
  "-\t\t\t\tname = \"adm1032\";\n"
  " \t\t\t}\n"
@@ -113,9 +112,9 @@
  " \t\t}\n"
  "+\t}\n"
  "+\n"
- "+\tif (kind = lm90) {\n"
+ "+\tif (kind == lm90) {\n"
  "+\t\tname = \"lm90\";\n"
- "+\t} else if (kind = adm1032) {\n"
+ "+\t} else if (kind == adm1032) {\n"
  "+\t\tname = \"adm1032\";\n"
  " \t}\n"
  " \n"
@@ -132,8 +131,8 @@
  " \n"
  " \tif (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))\n"
  "@@ -220,7 +219,6 @@\n"
- " \t\tif (man_id = 0x5CA3) { /* Winbond */\n"
- " \t\t\tif (chip_id = 0x70) { /* W83L785TS-S */\n"
+ " \t\tif (man_id == 0x5CA3) { /* Winbond */\n"
+ " \t\t\tif (chip_id == 0x70) { /* W83L785TS-S */\n"
  " \t\t\t\tkind = w83l785ts;\t\t\t\n"
  "-\t\t\t\tname = \"w83l785ts\";\n"
  " \t\t\t}\n"
@@ -149,4 +148,4 @@
  " \tdata->valid = 0;\n"
  " \tinit_MUTEX(&data->update_lock);"
 
-0da5a691f3ed2ee051b46f67d747abf945e50d8e2d30586b95a8ea11291e869b
+6fc3c561ee8ece6c734ec784ee7b6f0f8ceef34546384075cbe49c4af6b81a40

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.