All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20161109155307.GH13127@dell>

diff --git a/a/1.txt b/N1/1.txt
index 635be66..9369796 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -5,7 +5,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > Resubmition of arcxcnn backliught driver adding devicetree entries
 >  for all registers
 > 
-> Signed-off-by: Olimpiu Dejeu <olimpiu@arcticsand.com>
+> Signed-off-by: Olimpiu Dejeu <olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org>
 > 
 > ---
 >  drivers/video/backlight/Kconfig      |   7 +
@@ -118,7 +118,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +module_param_named(iledstr, s_iledstr, int, 0644);
 > +MODULE_PARM_DESC(iledstr, "Initial LED String (when no plat data)");
 > +
-> +static int s_retries = 2; /* 1 = only one try */
+> +static int s_retries = 2; /* 1 == only one try */
 > +module_param_named(retries, s_retries, int, 0644);
 > +MODULE_PARM_DESC(retries, "I2C retries attempted");
 > +
@@ -212,17 +212,17 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +		brightness = 0;
 > +
 > +	/* set brightness */
-> +	if (lp->mode = PWM_BASED)
+> +	if (lp->mode == PWM_BASED)
 > +		; /* via pwm */
-> +	else if (lp->mode = REGISTER_BASED)
+> +	else if (lp->mode == REGISTER_BASED)
 > +		arcxcnn_set_brightness(lp, brightness);
 > +
 > +	/* set power-on/off/save modes */
-> +	if (bl->props.power = 0)
+> +	if (bl->props.power == 0)
 > +		/* take out of standby */
 > +		arcxcnn_update_bit(lp, ARCXCNN_CMD, ARCXCNN_CMD_STDBY, 0);
 > +	else
-> +		/* 1-3 = power save, 4 = off
+> +		/* 1-3 == power save, 4 = off
 > +		 * place in low-power standby mode
 > +		 */
 > +		arcxcnn_update_bit(lp, ARCXCNN_CMD,
@@ -288,7 +288,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +
 > +	if (ledstr != lp->pdata->led_str) {
 > +		/* don't allow 0 for ledstr, use power to turn all off */
-> +		if (ledstr = 0)
+> +		if (ledstr == 0)
 > +			return 0;
 > +		lp->pdata->led_str = ledstr & 0x3F;
 > +		arcxcnn_update_bit(lp, ARCXCNN_LEDEN,
@@ -303,9 +303,9 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +	struct arcxcnn *lp = dev_get_drvdata(dev);
 > +	char *strmode = NULL;
 > +
-> +	if (lp->mode = PWM_BASED)
+> +	if (lp->mode == PWM_BASED)
 > +		strmode = "pwm based";
-> +	else if (lp->mode = REGISTER_BASED)
+> +	else if (lp->mode == REGISTER_BASED)
 > +		strmode = "register based";
 > +
 > +	return scnprintf(buf, PAGE_SIZE, "%s\n", strmode);
@@ -357,32 +357,32 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +		lp->pdata->initial_brightness = MAX_BRIGHTNESS;
 > +
 > +	ret = of_property_read_u32(node, "arcticsand,led-config-0", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->led_config_0 = (u8)prog_val;
 > +		lp->pdata->led_config_0_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,led-config-1", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->led_config_1 = (u8)prog_val;
 > +		lp->pdata->led_config_1_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,dim-freq", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->dim_freq = (u8)prog_val;
 > +		lp->pdata->dim_freq_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,comp-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->comp_config = (u8)prog_val;
 > +		lp->pdata->comp_config_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,filter-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->filter_config = (u8)prog_val;
 > +		lp->pdata->filter_config_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,trim-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->trim_config = (u8)prog_val;
 > +		lp->pdata->trim_config_set = true;
 > +	}
@@ -588,7 +588,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +module_i2c_driver(arcxcnn_driver);
 > +
 > +MODULE_LICENSE("GPL v2");
-> +MODULE_AUTHOR("Brian Dodge <bdodge09@outlook.com>");
+> +MODULE_AUTHOR("Brian Dodge <bdodge09-1ViLX0X+lBJBDgjK7y7TUQ@public.gmane.org>");
 > +MODULE_DESCRIPTION("ARCXCNN Backlight driver");
 > diff --git a/include/linux/i2c/arcxcnn.h b/include/linux/i2c/arcxcnn.h
 > new file mode 100644
@@ -667,5 +667,9 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 -- 
 Lee Jones
 Linaro STMicroelectronics Landing Team Lead
-Linaro.org │ Open source software for ARM SoCs
+Linaro.org │ Open source software for ARM SoCs
 Follow Linaro: Facebook | Twitter | Blog
+--
+To unsubscribe from this list: send the line "unsubscribe devicetree" in
+the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
+More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N1/content_digest
index cb6e50e..4c9a09d 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,8 +1,8 @@
  "ref\01477513778-31297-1-git-send-email-olimpiu@arcticsand.com\0"
  "ref\01477513778-31297-1-git-send-email-olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org\0"
- "From\0Lee Jones <lee.jones@linaro.org>\0"
+ "From\0Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>\0"
  "Subject\0Re: [PATCH 1/2] backlight: arcxcnn: add support for ArticSand devices\0"
- "Date\0Wed, 09 Nov 2016 15:53:07 +0000\0"
+ "Date\0Wed, 9 Nov 2016 15:53:07 +0000\0"
  "To\0Olimpiu Dejeu <olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org>\0"
  "Cc\0robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org"
   linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
@@ -18,7 +18,7 @@
  "> Resubmition of arcxcnn backliught driver adding devicetree entries\n"
  ">  for all registers\n"
  "> \n"
- "> Signed-off-by: Olimpiu Dejeu <olimpiu@arcticsand.com>\n"
+ "> Signed-off-by: Olimpiu Dejeu <olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org>\n"
  "> \n"
  "> ---\n"
  ">  drivers/video/backlight/Kconfig      |   7 +\n"
@@ -131,7 +131,7 @@
  "> +module_param_named(iledstr, s_iledstr, int, 0644);\n"
  "> +MODULE_PARM_DESC(iledstr, \"Initial LED String (when no plat data)\");\n"
  "> +\n"
- "> +static int s_retries = 2; /* 1 = only one try */\n"
+ "> +static int s_retries = 2; /* 1 == only one try */\n"
  "> +module_param_named(retries, s_retries, int, 0644);\n"
  "> +MODULE_PARM_DESC(retries, \"I2C retries attempted\");\n"
  "> +\n"
@@ -225,17 +225,17 @@
  "> +\t\tbrightness = 0;\n"
  "> +\n"
  "> +\t/* set brightness */\n"
- "> +\tif (lp->mode = PWM_BASED)\n"
+ "> +\tif (lp->mode == PWM_BASED)\n"
  "> +\t\t; /* via pwm */\n"
- "> +\telse if (lp->mode = REGISTER_BASED)\n"
+ "> +\telse if (lp->mode == REGISTER_BASED)\n"
  "> +\t\tarcxcnn_set_brightness(lp, brightness);\n"
  "> +\n"
  "> +\t/* set power-on/off/save modes */\n"
- "> +\tif (bl->props.power = 0)\n"
+ "> +\tif (bl->props.power == 0)\n"
  "> +\t\t/* take out of standby */\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_CMD, ARCXCNN_CMD_STDBY, 0);\n"
  "> +\telse\n"
- "> +\t\t/* 1-3 = power save, 4 = off\n"
+ "> +\t\t/* 1-3 == power save, 4 = off\n"
  "> +\t\t * place in low-power standby mode\n"
  "> +\t\t */\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_CMD,\n"
@@ -301,7 +301,7 @@
  "> +\n"
  "> +\tif (ledstr != lp->pdata->led_str) {\n"
  "> +\t\t/* don't allow 0 for ledstr, use power to turn all off */\n"
- "> +\t\tif (ledstr = 0)\n"
+ "> +\t\tif (ledstr == 0)\n"
  "> +\t\t\treturn 0;\n"
  "> +\t\tlp->pdata->led_str = ledstr & 0x3F;\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_LEDEN,\n"
@@ -316,9 +316,9 @@
  "> +\tstruct arcxcnn *lp = dev_get_drvdata(dev);\n"
  "> +\tchar *strmode = NULL;\n"
  "> +\n"
- "> +\tif (lp->mode = PWM_BASED)\n"
+ "> +\tif (lp->mode == PWM_BASED)\n"
  "> +\t\tstrmode = \"pwm based\";\n"
- "> +\telse if (lp->mode = REGISTER_BASED)\n"
+ "> +\telse if (lp->mode == REGISTER_BASED)\n"
  "> +\t\tstrmode = \"register based\";\n"
  "> +\n"
  "> +\treturn scnprintf(buf, PAGE_SIZE, \"%s\\n\", strmode);\n"
@@ -370,32 +370,32 @@
  "> +\t\tlp->pdata->initial_brightness = MAX_BRIGHTNESS;\n"
  "> +\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,led-config-0\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->led_config_0 = (u8)prog_val;\n"
  "> +\t\tlp->pdata->led_config_0_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,led-config-1\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->led_config_1 = (u8)prog_val;\n"
  "> +\t\tlp->pdata->led_config_1_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,dim-freq\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->dim_freq = (u8)prog_val;\n"
  "> +\t\tlp->pdata->dim_freq_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,comp-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->comp_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->comp_config_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,filter-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->filter_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->filter_config_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,trim-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->trim_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->trim_config_set = true;\n"
  "> +\t}\n"
@@ -601,7 +601,7 @@
  "> +module_i2c_driver(arcxcnn_driver);\n"
  "> +\n"
  "> +MODULE_LICENSE(\"GPL v2\");\n"
- "> +MODULE_AUTHOR(\"Brian Dodge <bdodge09@outlook.com>\");\n"
+ "> +MODULE_AUTHOR(\"Brian Dodge <bdodge09-1ViLX0X+lBJBDgjK7y7TUQ@public.gmane.org>\");\n"
  "> +MODULE_DESCRIPTION(\"ARCXCNN Backlight driver\");\n"
  "> diff --git a/include/linux/i2c/arcxcnn.h b/include/linux/i2c/arcxcnn.h\n"
  "> new file mode 100644\n"
@@ -680,7 +680,11 @@
  "-- \n"
  "Lee Jones\n"
  "Linaro STMicroelectronics Landing Team Lead\n"
- "Linaro.org \303\242\342\200\235\342\200\232 Open source software for ARM SoCs\n"
- Follow Linaro: Facebook | Twitter | Blog
+ "Linaro.org \342\224\202 Open source software for ARM SoCs\n"
+ "Follow Linaro: Facebook | Twitter | Blog\n"
+ "--\n"
+ "To unsubscribe from this list: send the line \"unsubscribe devicetree\" in\n"
+ "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
+ More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-ac7898337aafeb9719f3ce7317e685fca56d590c7b7774888981b64d5e937d2d
+a810e9c4c11ec3b06eb9a6db3c17f98befea3f0cc9dc75bfd0398cffa36d943d

diff --git a/a/1.txt b/N2/1.txt
index 635be66..dfbfed7 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -118,7 +118,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +module_param_named(iledstr, s_iledstr, int, 0644);
 > +MODULE_PARM_DESC(iledstr, "Initial LED String (when no plat data)");
 > +
-> +static int s_retries = 2; /* 1 = only one try */
+> +static int s_retries = 2; /* 1 == only one try */
 > +module_param_named(retries, s_retries, int, 0644);
 > +MODULE_PARM_DESC(retries, "I2C retries attempted");
 > +
@@ -212,17 +212,17 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +		brightness = 0;
 > +
 > +	/* set brightness */
-> +	if (lp->mode = PWM_BASED)
+> +	if (lp->mode == PWM_BASED)
 > +		; /* via pwm */
-> +	else if (lp->mode = REGISTER_BASED)
+> +	else if (lp->mode == REGISTER_BASED)
 > +		arcxcnn_set_brightness(lp, brightness);
 > +
 > +	/* set power-on/off/save modes */
-> +	if (bl->props.power = 0)
+> +	if (bl->props.power == 0)
 > +		/* take out of standby */
 > +		arcxcnn_update_bit(lp, ARCXCNN_CMD, ARCXCNN_CMD_STDBY, 0);
 > +	else
-> +		/* 1-3 = power save, 4 = off
+> +		/* 1-3 == power save, 4 = off
 > +		 * place in low-power standby mode
 > +		 */
 > +		arcxcnn_update_bit(lp, ARCXCNN_CMD,
@@ -288,7 +288,7 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +
 > +	if (ledstr != lp->pdata->led_str) {
 > +		/* don't allow 0 for ledstr, use power to turn all off */
-> +		if (ledstr = 0)
+> +		if (ledstr == 0)
 > +			return 0;
 > +		lp->pdata->led_str = ledstr & 0x3F;
 > +		arcxcnn_update_bit(lp, ARCXCNN_LEDEN,
@@ -303,9 +303,9 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +	struct arcxcnn *lp = dev_get_drvdata(dev);
 > +	char *strmode = NULL;
 > +
-> +	if (lp->mode = PWM_BASED)
+> +	if (lp->mode == PWM_BASED)
 > +		strmode = "pwm based";
-> +	else if (lp->mode = REGISTER_BASED)
+> +	else if (lp->mode == REGISTER_BASED)
 > +		strmode = "register based";
 > +
 > +	return scnprintf(buf, PAGE_SIZE, "%s\n", strmode);
@@ -357,32 +357,32 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 > +		lp->pdata->initial_brightness = MAX_BRIGHTNESS;
 > +
 > +	ret = of_property_read_u32(node, "arcticsand,led-config-0", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->led_config_0 = (u8)prog_val;
 > +		lp->pdata->led_config_0_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,led-config-1", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->led_config_1 = (u8)prog_val;
 > +		lp->pdata->led_config_1_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,dim-freq", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->dim_freq = (u8)prog_val;
 > +		lp->pdata->dim_freq_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,comp-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->comp_config = (u8)prog_val;
 > +		lp->pdata->comp_config_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,filter-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->filter_config = (u8)prog_val;
 > +		lp->pdata->filter_config_set = true;
 > +	}
 > +	ret = of_property_read_u32(node, "arcticsand,trim-config", &prog_val);
-> +	if (ret = 0) {
+> +	if (ret == 0) {
 > +		lp->pdata->trim_config = (u8)prog_val;
 > +		lp->pdata->trim_config_set = true;
 > +	}
@@ -667,5 +667,5 @@ On Wed, 26 Oct 2016, Olimpiu Dejeu wrote:
 -- 
 Lee Jones
 Linaro STMicroelectronics Landing Team Lead
-Linaro.org │ Open source software for ARM SoCs
+Linaro.org │ Open source software for ARM SoCs
 Follow Linaro: Facebook | Twitter | Blog
diff --git a/a/content_digest b/N2/content_digest
index cb6e50e..aad3f20 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,14 +1,13 @@
  "ref\01477513778-31297-1-git-send-email-olimpiu@arcticsand.com\0"
- "ref\01477513778-31297-1-git-send-email-olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org\0"
  "From\0Lee Jones <lee.jones@linaro.org>\0"
  "Subject\0Re: [PATCH 1/2] backlight: arcxcnn: add support for ArticSand devices\0"
- "Date\0Wed, 09 Nov 2016 15:53:07 +0000\0"
- "To\0Olimpiu Dejeu <olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org>\0"
- "Cc\0robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org"
-  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-fbdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
- " jg1.han-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org\0"
+ "Date\0Wed, 9 Nov 2016 15:53:07 +0000\0"
+ "To\0Olimpiu Dejeu <olimpiu@arcticsand.com>\0"
+ "Cc\0robh@kernel.org"
+  linux-kernel@vger.kernel.org
+  linux-fbdev@vger.kernel.org
+  devicetree@vger.kernel.org
+ " jg1.han@samsung.com\0"
  "\00:1\0"
  "b\0"
  "Jingoo?\n"
@@ -131,7 +130,7 @@
  "> +module_param_named(iledstr, s_iledstr, int, 0644);\n"
  "> +MODULE_PARM_DESC(iledstr, \"Initial LED String (when no plat data)\");\n"
  "> +\n"
- "> +static int s_retries = 2; /* 1 = only one try */\n"
+ "> +static int s_retries = 2; /* 1 == only one try */\n"
  "> +module_param_named(retries, s_retries, int, 0644);\n"
  "> +MODULE_PARM_DESC(retries, \"I2C retries attempted\");\n"
  "> +\n"
@@ -225,17 +224,17 @@
  "> +\t\tbrightness = 0;\n"
  "> +\n"
  "> +\t/* set brightness */\n"
- "> +\tif (lp->mode = PWM_BASED)\n"
+ "> +\tif (lp->mode == PWM_BASED)\n"
  "> +\t\t; /* via pwm */\n"
- "> +\telse if (lp->mode = REGISTER_BASED)\n"
+ "> +\telse if (lp->mode == REGISTER_BASED)\n"
  "> +\t\tarcxcnn_set_brightness(lp, brightness);\n"
  "> +\n"
  "> +\t/* set power-on/off/save modes */\n"
- "> +\tif (bl->props.power = 0)\n"
+ "> +\tif (bl->props.power == 0)\n"
  "> +\t\t/* take out of standby */\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_CMD, ARCXCNN_CMD_STDBY, 0);\n"
  "> +\telse\n"
- "> +\t\t/* 1-3 = power save, 4 = off\n"
+ "> +\t\t/* 1-3 == power save, 4 = off\n"
  "> +\t\t * place in low-power standby mode\n"
  "> +\t\t */\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_CMD,\n"
@@ -301,7 +300,7 @@
  "> +\n"
  "> +\tif (ledstr != lp->pdata->led_str) {\n"
  "> +\t\t/* don't allow 0 for ledstr, use power to turn all off */\n"
- "> +\t\tif (ledstr = 0)\n"
+ "> +\t\tif (ledstr == 0)\n"
  "> +\t\t\treturn 0;\n"
  "> +\t\tlp->pdata->led_str = ledstr & 0x3F;\n"
  "> +\t\tarcxcnn_update_bit(lp, ARCXCNN_LEDEN,\n"
@@ -316,9 +315,9 @@
  "> +\tstruct arcxcnn *lp = dev_get_drvdata(dev);\n"
  "> +\tchar *strmode = NULL;\n"
  "> +\n"
- "> +\tif (lp->mode = PWM_BASED)\n"
+ "> +\tif (lp->mode == PWM_BASED)\n"
  "> +\t\tstrmode = \"pwm based\";\n"
- "> +\telse if (lp->mode = REGISTER_BASED)\n"
+ "> +\telse if (lp->mode == REGISTER_BASED)\n"
  "> +\t\tstrmode = \"register based\";\n"
  "> +\n"
  "> +\treturn scnprintf(buf, PAGE_SIZE, \"%s\\n\", strmode);\n"
@@ -370,32 +369,32 @@
  "> +\t\tlp->pdata->initial_brightness = MAX_BRIGHTNESS;\n"
  "> +\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,led-config-0\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->led_config_0 = (u8)prog_val;\n"
  "> +\t\tlp->pdata->led_config_0_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,led-config-1\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->led_config_1 = (u8)prog_val;\n"
  "> +\t\tlp->pdata->led_config_1_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,dim-freq\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->dim_freq = (u8)prog_val;\n"
  "> +\t\tlp->pdata->dim_freq_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,comp-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->comp_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->comp_config_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,filter-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->filter_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->filter_config_set = true;\n"
  "> +\t}\n"
  "> +\tret = of_property_read_u32(node, \"arcticsand,trim-config\", &prog_val);\n"
- "> +\tif (ret = 0) {\n"
+ "> +\tif (ret == 0) {\n"
  "> +\t\tlp->pdata->trim_config = (u8)prog_val;\n"
  "> +\t\tlp->pdata->trim_config_set = true;\n"
  "> +\t}\n"
@@ -680,7 +679,7 @@
  "-- \n"
  "Lee Jones\n"
  "Linaro STMicroelectronics Landing Team Lead\n"
- "Linaro.org \303\242\342\200\235\342\200\232 Open source software for ARM SoCs\n"
+ "Linaro.org \342\224\202 Open source software for ARM SoCs\n"
  Follow Linaro: Facebook | Twitter | Blog
 
-ac7898337aafeb9719f3ce7317e685fca56d590c7b7774888981b64d5e937d2d
+953b4d3dd2c6954c2ac32a1b7d19b8f1c4c935a402bafec27c24ec891920f916

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.