All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <486B39E3.60601@renesas.com>

diff --git a/a/1.txt b/N1/1.txt
index 50a525e..71d1257 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -22,7 +22,7 @@ index 0000000..c87bfe5
 +++ b/Documentation/fb/sh7760fb.txt
 @@ -0,0 +1,131 @@
 +SH7760/SH7763 integrated LCDC Framebuffer driver
-+================================================
++========================
 +
 +0. Overwiew
 +-----------
@@ -75,7 +75,7 @@ index 0000000..c87bfe5
 +The following code illustrates what needs to be done to
 +get the framebuffer working on a 640x480 TFT:
 +
-+====================== cut here ======================================
++=========== cut here ===================
 +
 +#include <linux/fb.h>
 +#include <asm/sh7760fb.h>
@@ -151,7 +151,7 @@ index 0000000..c87bfe5
 +       .num_resources  = ARRAY_SIZE(sh7760_lcdc_res),
 +};
 +
-+====================== cut here ======================================
++=========== cut here ===================
 diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
 index 002b61b..0e95018 100644
 --- a/drivers/video/Kconfig
@@ -294,7 +294,7 @@ index 0000000..441f8b2
 +	unsigned short intr = ioread16(par->base + LDINTR);
 +	int lps;
 +
-+	if (blank == FB_BLANK_UNBLANK) {
++	if (blank = FB_BLANK_UNBLANK) {
 +		intr |= VINT_START;
 +		cntr = LDCNTR_DON2 | LDCNTR_DON;
 +		lps = 3;
@@ -433,7 +433,7 @@ index 0000000..441f8b2
 +
 +	var->bits_per_pixel = bpp;
 +
-+	if ((var->grayscale) && (var->bits_per_pixel == 1))
++	if ((var->grayscale) && (var->bits_per_pixel = 1))
 +		fix->visual = FB_VISUAL_MONO10;
 +	else if (var->bits_per_pixel >= 15)
 +		fix->visual = FB_VISUAL_TRUECOLOR;
@@ -526,13 +526,13 @@ index 0000000..441f8b2
 +	if (!gray)
 +		stride *= (bpp + 7) >> 3;
 +	else {
-+		if (bpp == 1)
++		if (bpp = 1)
 +			stride >>= 3;
-+		else if (bpp == 2)
++		else if (bpp = 2)
 +			stride >>= 2;
-+		else if (bpp == 4)
++		else if (bpp = 4)
 +			stride >>= 1;
-+		/* 6 bpp == 8 bpp */
++		/* 6 bpp = 8 bpp */
 +	}
 +
 +	/* if rotated, stride must be power of 2 */
@@ -648,11 +648,11 @@ index 0000000..441f8b2
 +
 +	vram = info->var.xres * info->var.yres;
 +	if (info->var.grayscale) {
-+		if (bpp == 1)
++		if (bpp = 1)
 +			vram >>= 3;
-+		else if (bpp == 2)
++		else if (bpp = 2)
 +			vram >>= 2;
-+		else if (bpp == 4)
++		else if (bpp = 4)
 +			vram >>= 1;
 +	} else if (bpp > 8)
 +		vram *= 2;
@@ -690,7 +690,7 @@ index 0000000..441f8b2
 +	int ret;
 +
 +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-+	if (unlikely(res == NULL)) {
++	if (unlikely(res = NULL)) {
 +		dev_err(&pdev->dev, "invalid resource\n");
 +		return -EINVAL;
 +	}
@@ -1057,10 +1057,3 @@ index 0000000..8767f61
 +#endif /* _ASM_SH_SH7760FB_H */
 -- 
 1.5.5.1
-
-
--------------------------------------------------------------------------
-Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
-Studies have shown that voting for your favorite open source project,
-along with a healthy diet, reduces your potential for chronic lameness
-and boredom. Vote Now at http://www.sourceforge.net/community/cca08
diff --git a/a/content_digest b/N1/content_digest
index a606bc7..efad459 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,6 +1,6 @@
  "From\0Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>\0"
  "Subject\0[PATCH v4] video: sh7760fb: SH7760/SH7763 LCDC framebuffer driver\0"
- "Date\0Wed, 02 Jul 2008 17:18:43 +0900\0"
+ "Date\0Wed, 02 Jul 2008 08:18:43 +0000\0"
  "To\0linuc-fbdev <Linux-fbdev-devel@lists.sourceforge.net>\0"
  "Cc\0Paul Mundt <lethal@linux-sh.org>"
   Munakata Hisao <munakata.hisao@renesas.com>
@@ -31,7 +31,7 @@
  "+++ b/Documentation/fb/sh7760fb.txt\n"
  "@@ -0,0 +1,131 @@\n"
  "+SH7760/SH7763 integrated LCDC Framebuffer driver\n"
- "+================================================\n"
+ "+========================\n"
  "+\n"
  "+0. Overwiew\n"
  "+-----------\n"
@@ -84,7 +84,7 @@
  "+The following code illustrates what needs to be done to\n"
  "+get the framebuffer working on a 640x480 TFT:\n"
  "+\n"
- "+====================== cut here ======================================\n"
+ "+=========== cut here ===================\n"
  "+\n"
  "+#include <linux/fb.h>\n"
  "+#include <asm/sh7760fb.h>\n"
@@ -160,7 +160,7 @@
  "+       .num_resources  = ARRAY_SIZE(sh7760_lcdc_res),\n"
  "+};\n"
  "+\n"
- "+====================== cut here ======================================\n"
+ "+=========== cut here ===================\n"
  "diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig\n"
  "index 002b61b..0e95018 100644\n"
  "--- a/drivers/video/Kconfig\n"
@@ -303,7 +303,7 @@
  "+\tunsigned short intr = ioread16(par->base + LDINTR);\n"
  "+\tint lps;\n"
  "+\n"
- "+\tif (blank == FB_BLANK_UNBLANK) {\n"
+ "+\tif (blank = FB_BLANK_UNBLANK) {\n"
  "+\t\tintr |= VINT_START;\n"
  "+\t\tcntr = LDCNTR_DON2 | LDCNTR_DON;\n"
  "+\t\tlps = 3;\n"
@@ -442,7 +442,7 @@
  "+\n"
  "+\tvar->bits_per_pixel = bpp;\n"
  "+\n"
- "+\tif ((var->grayscale) && (var->bits_per_pixel == 1))\n"
+ "+\tif ((var->grayscale) && (var->bits_per_pixel = 1))\n"
  "+\t\tfix->visual = FB_VISUAL_MONO10;\n"
  "+\telse if (var->bits_per_pixel >= 15)\n"
  "+\t\tfix->visual = FB_VISUAL_TRUECOLOR;\n"
@@ -535,13 +535,13 @@
  "+\tif (!gray)\n"
  "+\t\tstride *= (bpp + 7) >> 3;\n"
  "+\telse {\n"
- "+\t\tif (bpp == 1)\n"
+ "+\t\tif (bpp = 1)\n"
  "+\t\t\tstride >>= 3;\n"
- "+\t\telse if (bpp == 2)\n"
+ "+\t\telse if (bpp = 2)\n"
  "+\t\t\tstride >>= 2;\n"
- "+\t\telse if (bpp == 4)\n"
+ "+\t\telse if (bpp = 4)\n"
  "+\t\t\tstride >>= 1;\n"
- "+\t\t/* 6 bpp == 8 bpp */\n"
+ "+\t\t/* 6 bpp = 8 bpp */\n"
  "+\t}\n"
  "+\n"
  "+\t/* if rotated, stride must be power of 2 */\n"
@@ -657,11 +657,11 @@
  "+\n"
  "+\tvram = info->var.xres * info->var.yres;\n"
  "+\tif (info->var.grayscale) {\n"
- "+\t\tif (bpp == 1)\n"
+ "+\t\tif (bpp = 1)\n"
  "+\t\t\tvram >>= 3;\n"
- "+\t\telse if (bpp == 2)\n"
+ "+\t\telse if (bpp = 2)\n"
  "+\t\t\tvram >>= 2;\n"
- "+\t\telse if (bpp == 4)\n"
+ "+\t\telse if (bpp = 4)\n"
  "+\t\t\tvram >>= 1;\n"
  "+\t} else if (bpp > 8)\n"
  "+\t\tvram *= 2;\n"
@@ -699,7 +699,7 @@
  "+\tint ret;\n"
  "+\n"
  "+\tres = platform_get_resource(pdev, IORESOURCE_MEM, 0);\n"
- "+\tif (unlikely(res == NULL)) {\n"
+ "+\tif (unlikely(res = NULL)) {\n"
  "+\t\tdev_err(&pdev->dev, \"invalid resource\\n\");\n"
  "+\t\treturn -EINVAL;\n"
  "+\t}\n"
@@ -1065,13 +1065,6 @@
  "+\n"
  "+#endif /* _ASM_SH_SH7760FB_H */\n"
  "-- \n"
- "1.5.5.1\n"
- "\n"
- "\n"
- "-------------------------------------------------------------------------\n"
- "Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!\n"
- "Studies have shown that voting for your favorite open source project,\n"
- "along with a healthy diet, reduces your potential for chronic lameness\n"
- and boredom. Vote Now at http://www.sourceforge.net/community/cca08
+ 1.5.5.1
 
-1aed1d6b7bc81fcfb540c3f1e4d5899aab7531a22e6b292012fe7aafdd3a0680
+fd1ab1affb6e749b4caa1b3385decec16c932b7767fbf4497c9b48cd375ff561

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.