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

diff --git a/a/1.txt b/N1/1.txt
index 418f81e..6f4a49c 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -33,28 +33,28 @@ diff -Nru a/drivers/i2c/chips/adm1021.c b/drivers/i2c/chips/adm1021.c
  	   at this moment; i2c_detect really won't call us. */
 @@ -291,28 +290,20 @@
  
- 	if (kind = max1617) {
+ 	if (kind == max1617) {
  		type_name = "max1617";
 -		client_name = "MAX1617 chip";
- 	} else if (kind = max1617a) {
+ 	} else if (kind == max1617a) {
  		type_name = "max1617a";
 -		client_name = "MAX1617A chip";
- 	} else if (kind = adm1021) {
+ 	} else if (kind == adm1021) {
  		type_name = "adm1021";
 -		client_name = "ADM1021 chip";
- 	} else if (kind = adm1023) {
+ 	} else if (kind == adm1023) {
  		type_name = "adm1023";
 -		client_name = "ADM1023 chip";
- 	} else if (kind = thmc10) {
+ 	} else if (kind == thmc10) {
  		type_name = "thmc10";
 -		client_name = "THMC10 chip";
- 	} else if (kind = lm84) {
+ 	} else if (kind == lm84) {
  		type_name = "lm84";
 -		client_name = "LM84 chip";
- 	} else if (kind = gl523sm) {
+ 	} else if (kind == gl523sm) {
  		type_name = "gl523sm";
 -		client_name = "GL523SM chip";
- 	} else if (kind = mc1066) {
+ 	} else if (kind == mc1066) {
  		type_name = "mc1066";
 -		client_name = "MC1066 chip";
  	} else {
@@ -82,10 +82,10 @@ diff -Nru a/drivers/i2c/chips/it87.c b/drivers/i2c/chips/it87.c
  	if (!is_isa && 
 @@ -681,10 +680,8 @@
  
- 	if (kind = it87) {
+ 	if (kind == it87) {
  		name = "it87";
 -		client_name = "IT87 chip";
- 	} /* else if (kind = it8712) {
+ 	} /* else if (kind == it8712) {
  		name = "it8712";
 -		client_name = "IT87-J chip";
  	} */ else {
@@ -97,13 +97,13 @@ diff -Nru a/drivers/i2c/chips/lm78.c b/drivers/i2c/chips/lm78.c
 @@ -625,11 +625,11 @@
  	}
  
- 	if (kind = lm78) {
+ 	if (kind == lm78) {
 -		client_name = "LM78 chip";
 +		client_name = "lm78";
- 	} else if (kind = lm78j) {
+ 	} else if (kind == lm78j) {
 -		client_name = "LM78-J chip";
 +		client_name = "lm78-j";
- 	} else if (kind = lm79) {
+ 	} else if (kind == lm79) {
 -		client_name = "LM79 chip";
 +		client_name = "lm79";
  	} else {
@@ -114,19 +114,19 @@ diff -Nru a/drivers/i2c/chips/lm85.c b/drivers/i2c/chips/lm85.c
 +++ b/drivers/i2c/chips/lm85.c	Mon Sep 22 16:11:40 2003
 @@ -853,24 +853,20 @@
  	/* Fill in the chip specific driver values */
- 	if ( kind = any_chip ) {
+ 	if ( kind == any_chip ) {
  		type_name = "lm85";
 -		strlcpy(new_client->name, "Generic LM85", I2C_NAME_SIZE);
- 	} else if ( kind = lm85b ) {
+ 	} else if ( kind == lm85b ) {
  		type_name = "lm85b";
 -		strlcpy(new_client->name, "National LM85-B", I2C_NAME_SIZE);
- 	} else if ( kind = lm85c ) {
+ 	} else if ( kind == lm85c ) {
  		type_name = "lm85c";
 -		strlcpy(new_client->name, "National LM85-C", I2C_NAME_SIZE);
- 	} else if ( kind = adm1027 ) {
+ 	} else if ( kind == adm1027 ) {
  		type_name = "adm1027";
 -		strlcpy(new_client->name, "Analog Devices ADM1027", I2C_NAME_SIZE);
- 	} else if ( kind = adt7463 ) {
+ 	} else if ( kind == adt7463 ) {
  		type_name = "adt7463";
 -		strlcpy(new_client->name, "Analog Devices ADT7463", I2C_NAME_SIZE);
  	} else {
@@ -156,19 +156,19 @@ diff -Nru a/drivers/i2c/chips/w83781d.c b/drivers/i2c/chips/w83781d.c
 @@ -1098,15 +1098,15 @@
  	}
  
- 	if (kind = w83781d)
+ 	if (kind == w83781d)
 -		client_name = "W83781D subclient";
 +		client_name = "w83781d subclient";
- 	else if (kind = w83782d)
+ 	else if (kind == w83782d)
 -		client_name = "W83782D subclient";
 +		client_name = "w83782d subclient";
- 	else if (kind = w83783s)
+ 	else if (kind == w83783s)
 -		client_name = "W83783S subclient";
 +		client_name = "w83783s subclient";
- 	else if (kind = w83627hf)
+ 	else if (kind == w83627hf)
 -		client_name = "W83627HF subclient";
 +		client_name = "w83627hf subclient";
- 	else if (kind = as99127f)
+ 	else if (kind == as99127f)
 -		client_name = "AS99127F subclient";
 +		client_name = "as99127f subclient";
  	else
@@ -177,26 +177,26 @@ diff -Nru a/drivers/i2c/chips/w83781d.c b/drivers/i2c/chips/w83781d.c
 @@ -1304,20 +1304,20 @@
  	}
  
- 	if (kind = w83781d) {
+ 	if (kind == w83781d) {
 -		client_name = "W83781D chip";
 +		client_name = "w83781d";
- 	} else if (kind = w83782d) {
+ 	} else if (kind == w83782d) {
 -		client_name = "W83782D chip";
 +		client_name = "w83782d";
- 	} else if (kind = w83783s) {
+ 	} else if (kind == w83783s) {
 -		client_name = "W83783S chip";
 +		client_name = "w83783s";
- 	} else if (kind = w83627hf) {
- 		if (val1 = 0x90)
+ 	} else if (kind == w83627hf) {
+ 		if (val1 == 0x90)
 -			client_name = "W83627THF chip";
 +			client_name = "w83627thf";
  		else
 -			client_name = "W83627HF chip";
 +			client_name = "w83627hf";
- 	} else if (kind = as99127f) {
+ 	} else if (kind == as99127f) {
 -		client_name = "AS99127F chip";
 +		client_name = "as99127f";
- 	} else if (kind = w83697hf) {
+ 	} else if (kind == w83697hf) {
 -		client_name = "W83697HF chip";
 +		client_name = "w83697hf";
  	} else {
diff --git a/a/content_digest b/N1/content_digest
index 6da50a6..f0a52cf 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,8 +1,7 @@
  "ref\01064273428551@kroah.com\0"
- "ref\01064273416272@kroah.com\0"
- "From\0greg@kroah.com (Greg KH)\0"
- "Subject\0[PATCH] i2c driver fixes for 2.6.0-test5\0"
- "Date\0Thu, 19 May 2005 06:24:19 +0000\0"
+ "From\0Greg KH <greg@kroah.com>\0"
+ "Subject\0Re: [PATCH] i2c driver fixes for 2.6.0-test5\0"
+ "Date\0Mon, 22 Sep 2003 16:30:28 -0700\0"
  "To\0linux-kernel@vger.kernel.org"
  " sensors@stimpy.netroedge.com\0"
  "\00:1\0"
@@ -42,28 +41,28 @@
  " \t   at this moment; i2c_detect really won't call us. */\n"
  "@@ -291,28 +290,20 @@\n"
  " \n"
- " \tif (kind = max1617) {\n"
+ " \tif (kind == max1617) {\n"
  " \t\ttype_name = \"max1617\";\n"
  "-\t\tclient_name = \"MAX1617 chip\";\n"
- " \t} else if (kind = max1617a) {\n"
+ " \t} else if (kind == max1617a) {\n"
  " \t\ttype_name = \"max1617a\";\n"
  "-\t\tclient_name = \"MAX1617A chip\";\n"
- " \t} else if (kind = adm1021) {\n"
+ " \t} else if (kind == adm1021) {\n"
  " \t\ttype_name = \"adm1021\";\n"
  "-\t\tclient_name = \"ADM1021 chip\";\n"
- " \t} else if (kind = adm1023) {\n"
+ " \t} else if (kind == adm1023) {\n"
  " \t\ttype_name = \"adm1023\";\n"
  "-\t\tclient_name = \"ADM1023 chip\";\n"
- " \t} else if (kind = thmc10) {\n"
+ " \t} else if (kind == thmc10) {\n"
  " \t\ttype_name = \"thmc10\";\n"
  "-\t\tclient_name = \"THMC10 chip\";\n"
- " \t} else if (kind = lm84) {\n"
+ " \t} else if (kind == lm84) {\n"
  " \t\ttype_name = \"lm84\";\n"
  "-\t\tclient_name = \"LM84 chip\";\n"
- " \t} else if (kind = gl523sm) {\n"
+ " \t} else if (kind == gl523sm) {\n"
  " \t\ttype_name = \"gl523sm\";\n"
  "-\t\tclient_name = \"GL523SM chip\";\n"
- " \t} else if (kind = mc1066) {\n"
+ " \t} else if (kind == mc1066) {\n"
  " \t\ttype_name = \"mc1066\";\n"
  "-\t\tclient_name = \"MC1066 chip\";\n"
  " \t} else {\n"
@@ -91,10 +90,10 @@
  " \tif (!is_isa && \n"
  "@@ -681,10 +680,8 @@\n"
  " \n"
- " \tif (kind = it87) {\n"
+ " \tif (kind == it87) {\n"
  " \t\tname = \"it87\";\n"
  "-\t\tclient_name = \"IT87 chip\";\n"
- " \t} /* else if (kind = it8712) {\n"
+ " \t} /* else if (kind == it8712) {\n"
  " \t\tname = \"it8712\";\n"
  "-\t\tclient_name = \"IT87-J chip\";\n"
  " \t} */ else {\n"
@@ -106,13 +105,13 @@
  "@@ -625,11 +625,11 @@\n"
  " \t}\n"
  " \n"
- " \tif (kind = lm78) {\n"
+ " \tif (kind == lm78) {\n"
  "-\t\tclient_name = \"LM78 chip\";\n"
  "+\t\tclient_name = \"lm78\";\n"
- " \t} else if (kind = lm78j) {\n"
+ " \t} else if (kind == lm78j) {\n"
  "-\t\tclient_name = \"LM78-J chip\";\n"
  "+\t\tclient_name = \"lm78-j\";\n"
- " \t} else if (kind = lm79) {\n"
+ " \t} else if (kind == lm79) {\n"
  "-\t\tclient_name = \"LM79 chip\";\n"
  "+\t\tclient_name = \"lm79\";\n"
  " \t} else {\n"
@@ -123,19 +122,19 @@
  "+++ b/drivers/i2c/chips/lm85.c\tMon Sep 22 16:11:40 2003\n"
  "@@ -853,24 +853,20 @@\n"
  " \t/* Fill in the chip specific driver values */\n"
- " \tif ( kind = any_chip ) {\n"
+ " \tif ( kind == any_chip ) {\n"
  " \t\ttype_name = \"lm85\";\n"
  "-\t\tstrlcpy(new_client->name, \"Generic LM85\", I2C_NAME_SIZE);\n"
- " \t} else if ( kind = lm85b ) {\n"
+ " \t} else if ( kind == lm85b ) {\n"
  " \t\ttype_name = \"lm85b\";\n"
  "-\t\tstrlcpy(new_client->name, \"National LM85-B\", I2C_NAME_SIZE);\n"
- " \t} else if ( kind = lm85c ) {\n"
+ " \t} else if ( kind == lm85c ) {\n"
  " \t\ttype_name = \"lm85c\";\n"
  "-\t\tstrlcpy(new_client->name, \"National LM85-C\", I2C_NAME_SIZE);\n"
- " \t} else if ( kind = adm1027 ) {\n"
+ " \t} else if ( kind == adm1027 ) {\n"
  " \t\ttype_name = \"adm1027\";\n"
  "-\t\tstrlcpy(new_client->name, \"Analog Devices ADM1027\", I2C_NAME_SIZE);\n"
- " \t} else if ( kind = adt7463 ) {\n"
+ " \t} else if ( kind == adt7463 ) {\n"
  " \t\ttype_name = \"adt7463\";\n"
  "-\t\tstrlcpy(new_client->name, \"Analog Devices ADT7463\", I2C_NAME_SIZE);\n"
  " \t} else {\n"
@@ -165,19 +164,19 @@
  "@@ -1098,15 +1098,15 @@\n"
  " \t}\n"
  " \n"
- " \tif (kind = w83781d)\n"
+ " \tif (kind == w83781d)\n"
  "-\t\tclient_name = \"W83781D subclient\";\n"
  "+\t\tclient_name = \"w83781d subclient\";\n"
- " \telse if (kind = w83782d)\n"
+ " \telse if (kind == w83782d)\n"
  "-\t\tclient_name = \"W83782D subclient\";\n"
  "+\t\tclient_name = \"w83782d subclient\";\n"
- " \telse if (kind = w83783s)\n"
+ " \telse if (kind == w83783s)\n"
  "-\t\tclient_name = \"W83783S subclient\";\n"
  "+\t\tclient_name = \"w83783s subclient\";\n"
- " \telse if (kind = w83627hf)\n"
+ " \telse if (kind == w83627hf)\n"
  "-\t\tclient_name = \"W83627HF subclient\";\n"
  "+\t\tclient_name = \"w83627hf subclient\";\n"
- " \telse if (kind = as99127f)\n"
+ " \telse if (kind == as99127f)\n"
  "-\t\tclient_name = \"AS99127F subclient\";\n"
  "+\t\tclient_name = \"as99127f subclient\";\n"
  " \telse\n"
@@ -186,30 +185,30 @@
  "@@ -1304,20 +1304,20 @@\n"
  " \t}\n"
  " \n"
- " \tif (kind = w83781d) {\n"
+ " \tif (kind == w83781d) {\n"
  "-\t\tclient_name = \"W83781D chip\";\n"
  "+\t\tclient_name = \"w83781d\";\n"
- " \t} else if (kind = w83782d) {\n"
+ " \t} else if (kind == w83782d) {\n"
  "-\t\tclient_name = \"W83782D chip\";\n"
  "+\t\tclient_name = \"w83782d\";\n"
- " \t} else if (kind = w83783s) {\n"
+ " \t} else if (kind == w83783s) {\n"
  "-\t\tclient_name = \"W83783S chip\";\n"
  "+\t\tclient_name = \"w83783s\";\n"
- " \t} else if (kind = w83627hf) {\n"
- " \t\tif (val1 = 0x90)\n"
+ " \t} else if (kind == w83627hf) {\n"
+ " \t\tif (val1 == 0x90)\n"
  "-\t\t\tclient_name = \"W83627THF chip\";\n"
  "+\t\t\tclient_name = \"w83627thf\";\n"
  " \t\telse\n"
  "-\t\t\tclient_name = \"W83627HF chip\";\n"
  "+\t\t\tclient_name = \"w83627hf\";\n"
- " \t} else if (kind = as99127f) {\n"
+ " \t} else if (kind == as99127f) {\n"
  "-\t\tclient_name = \"AS99127F chip\";\n"
  "+\t\tclient_name = \"as99127f\";\n"
- " \t} else if (kind = w83697hf) {\n"
+ " \t} else if (kind == w83697hf) {\n"
  "-\t\tclient_name = \"W83697HF chip\";\n"
  "+\t\tclient_name = \"w83697hf\";\n"
  " \t} else {\n"
  " \t\tdev_err(&new_client->dev, \"Internal error: unknown \"\n"
  " \t\t\t\t\t\t\"kind (%d)?!?\", kind);"
 
-18dbf5c2406b0862204236200b6292fca9c036aecbd1d0369f7ea9e1533d7523
+6b2d5621d8f0650638c0e0a3ce83043aa6602c8ea6d6d7737e8d729adf858078

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.