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

diff --git a/a/1.txt b/N1/1.txt
index 5470e91..98857e5 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -4,7 +4,7 @@ On Wed, 09 Nov 2016, Lee Jones wrote:
 
 Ah, it looks like you used the wrong address.
 
-I should have been: jingoohan1@gmail.com
+I should have been: jingoohan1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
 
 I'll CC him from here.
 
@@ -13,7 +13,7 @@ I'll CC him from here.
 > > 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 +
@@ -126,7 +126,7 @@ I'll CC him from here.
 > > +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");
 > > +
@@ -220,17 +220,17 @@ I'll CC him from here.
 > > +		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,
@@ -296,7 +296,7 @@ I'll CC him from here.
 > > +
 > > +	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,
@@ -311,9 +311,9 @@ I'll CC him from here.
 > > +	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);
@@ -365,32 +365,32 @@ I'll CC him from here.
 > > +		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;
 > > +	}
@@ -596,7 +596,7 @@ I'll CC him from here.
 > > +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
@@ -676,5 +676,9 @@ I'll CC him from here.
 -- 
 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 634bfe4..c96224c 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,6 +1,6 @@
  "ref\01477513778-31297-1-git-send-email-olimpiu@arcticsand.com\0"
  "ref\020161109155307.GH13127@dell\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\0Thu, 10 Nov 2016 08:14:47 +0000\0"
  "To\0Olimpiu Dejeu <olimpiu-eV7fy4qpoLhpLGFMi4vTTA@public.gmane.org>\0"
@@ -17,7 +17,7 @@
  "\n"
  "Ah, it looks like you used the wrong address.\n"
  "\n"
- "I should have been: jingoohan1@gmail.com\n"
+ "I should have been: jingoohan1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org\n"
  "\n"
  "I'll CC him from here.\n"
  "\n"
@@ -26,7 +26,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"
@@ -139,7 +139,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"
@@ -233,17 +233,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"
@@ -309,7 +309,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"
@@ -324,9 +324,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"
@@ -378,32 +378,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"
@@ -609,7 +609,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"
@@ -689,7 +689,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
 
-c05e3fa38ffe8cbe57f88a40f155de73ae96512dcc3f1b120a1b636ef16837a9
+1bba5a97fc4a7d735769e167d2660261930f28fa8ed9c58bf54809a5a4425edf

diff --git a/a/1.txt b/N2/1.txt
index 5470e91..c79da26 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -126,7 +126,7 @@ I'll CC him from here.
 > > +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");
 > > +
@@ -220,17 +220,17 @@ I'll CC him from here.
 > > +		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,
@@ -296,7 +296,7 @@ I'll CC him from here.
 > > +
 > > +	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,
@@ -311,9 +311,9 @@ I'll CC him from here.
 > > +	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);
@@ -365,32 +365,32 @@ I'll CC him from here.
 > > +		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;
 > > +	}
@@ -676,5 +676,5 @@ I'll CC him from here.
 -- 
 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 634bfe4..dd33c7a 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -3,12 +3,12 @@
  "From\0Lee Jones <lee.jones@linaro.org>\0"
  "Subject\0Re: [PATCH 1/2] backlight: arcxcnn: add support for ArticSand devices\0"
  "Date\0Thu, 10 Nov 2016 08:14:47 +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
- " jingoohan1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org\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
+ " jingoohan1@gmail.com\0"
  "\00:1\0"
  "b\0"
  "On Wed, 09 Nov 2016, Lee Jones wrote:\n"
@@ -139,7 +139,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"
@@ -233,17 +233,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"
@@ -309,7 +309,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"
@@ -324,9 +324,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"
@@ -378,32 +378,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"
@@ -689,7 +689,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
 
-c05e3fa38ffe8cbe57f88a40f155de73ae96512dcc3f1b120a1b636ef16837a9
+548f165b172d93b345159c0da7b699518e53e4fd6c71fb08b1bb052908aa2649

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.