All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <4C29CFBD.3040205@samsung.com>

diff --git a/a/1.1.hdr b/a/1.1.hdr
deleted file mode 100644
index 8121da0..0000000
--- a/a/1.1.hdr
+++ /dev/null
@@ -1,2 +0,0 @@
-Content-type: text/plain; charset=EUC-KR
-Content-transfer-encoding: 7BIT
diff --git a/a/1.2.bin b/a/1.2.bin
deleted file mode 100644
index 052a12a..0000000
--- a/a/1.2.bin
+++ /dev/null
@@ -1,105 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
-
-<meta http-equiv="content-type" content="text/html; charset=EUC-KR">
-</head>
-<body bgcolor="#ffffff" text="#000000">
-<div class="moz-text-html" lang="ko">
-<div class="moz-text-html" lang="ko"> CPU interface needs cs, wr setup,
-wr act and hold delay.<br>
-I added some members for them to common framework.<br>
-<br>
-Signed-off-by: InKi Dae &lt;<a href="mailto:p.osciak@samsung.com">inki.dae@samsung.com</a>&gt;<br>
-Signed-off-by: Kyungmin Park &lt;<a
- href="mailto:kyungmin.park@samsung.com">kyungmin.park@samsung.com</a>&gt;<br>
----<br>
-<br>
-diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c<br>
-<pre>index 0a4dbdc..74122d1 100644
---- a/drivers/video/modedb.c
-+++ b/drivers/video/modedb.c
-@@ -759,6 +759,27 @@ void fb_videomode_to_var(struct fb_var_screeninfo *var,
- }
- 
- /**
-+ * fb_cpumode_to_var - convert fb_cpumode to fb_var_screeninfo
-+ * @var: pointer to struct fb_var_screeninfo
-+ * @mode: pointer to struct fb_cpumode
-+ */
-+void fb_cmdmode_to_var(struct fb_var_screeninfo *var,
-+			 const struct fb_cmdmode *mode)
-+{
-+	var-&gt;xres = mode-&gt;xres;
-+	var-&gt;yres = mode-&gt;yres;
-+	var-&gt;xres_virtual = mode-&gt;xres;
-+	var-&gt;yres_virtual = mode-&gt;yres;
-+	var-&gt;xoffset = 0;
-+	var-&gt;yoffset = 0;
-+	var-&gt;pixclock = mode-&gt;pixclock;
-+	var-&gt;cs_setup = mode-&gt;cs_setup;
-+	var-&gt;wr_setup = mode-&gt;wr_setup;
-+	var-&gt;wr_act = mode-&gt;wr_act;
-+	var-&gt;wr_hold = mode-&gt;wr_hold;
-+}
-+
-+/**
-  * fb_mode_is_equal - compare 2 videomodes
-  * @mode1: first videomode
-  * @mode2: second videomode
-@@ -1048,6 +1069,7 @@ finished:
- EXPORT_SYMBOL(fb_find_best_display);
- 
- EXPORT_SYMBOL(fb_videomode_to_var);
-+EXPORT_SYMBOL(fb_cmdmode_to_var);
- EXPORT_SYMBOL(fb_var_to_videomode);
- EXPORT_SYMBOL(fb_mode_is_equal);
- EXPORT_SYMBOL(fb_add_videomode);
-diff --git a/include/linux/fb.h b/include/linux/fb.h
-index 907ace3..73381c3 100644
---- a/include/linux/fb.h
-+++ b/include/linux/fb.h
-@@ -269,6 +269,12 @@ struct fb_var_screeninfo {
- 	__u32 vmode;			/* see FB_VMODE_*		*/
- 	__u32 rotate;			/* angle we rotate counter clockwise */
- 	__u32 reserved[5];		/* Reserved for future compatibility */
-+
-+	/* For cpu interface timing. */
-+	__u32 cs_setup;
-+	__u32 wr_setup;
-+	__u32 wr_act;
-+	__u32 wr_hold;
- };
- 
- struct fb_cmap {
-@@ -1117,11 +1123,24 @@ struct fb_videomode {
- 	u32 lower_margin;
- 	u32 hsync_len;
- 	u32 vsync_len;
-+	u32 cmd_allow_len;
- 	u32 sync;
- 	u32 vmode;
- 	u32 flag;
- };
- 
-+struct fb_cmdmode {
-+	const char *name;	/* optional */
-+	u32 refresh;		/* optional */
-+	u32 xres;
-+	u32 yres;
-+	u32 pixclock;
-+	u32 cs_setup;
-+	u32 wr_setup;
-+	u32 wr_act;
-+	u32 wr_hold;
-+};
-+
- extern const char *fb_mode_option;
- extern const struct fb_videomode vesa_modes[];
- 
-</pre>
-<br>
-</div>
-</div>
-</body>
-</html>
diff --git a/a/1.2.hdr b/a/1.2.hdr
deleted file mode 100644
index 17e3fb4..0000000
--- a/a/1.2.hdr
+++ /dev/null
@@ -1,2 +0,0 @@
-Content-type: text/html; charset=EUC-KR
-Content-transfer-encoding: 7BIT
diff --git a/a/1.1.txt b/N1/1.txt
similarity index 87%
rename from a/1.1.txt
rename to N1/1.txt
index 223abc0..6b952f6 100644
--- a/a/1.1.txt
+++ b/N1/1.txt
@@ -1,8 +1,8 @@
  CPU interface needs cs, wr setup, wr act and hold delay.
 I added some members for them to common framework.
 
-Signed-off-by: InKi Dae <inki.dae@samsung.com <mailto:p.osciak@samsung.com>>
-Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com
+Signed-off-by: InKi Dae <inki.dae at samsung.com <mailto:p.osciak@samsung.com>>
+Signed-off-by: Kyungmin Park <kyungmin.park at samsung.com
 <mailto:kyungmin.park@samsung.com>>
 ---
 
@@ -88,3 +88,9 @@ index 907ace3..73381c3 100644
 +
  extern const char *fb_mode_option;
  extern const struct fb_videomode vesa_modes[];
+ 
+
+
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20100629/17de1d8e/attachment-0001.html>
diff --git a/a/2.hdr b/a/2.hdr
deleted file mode 100644
index 4b86001..0000000
--- a/a/2.hdr
+++ /dev/null
@@ -1,4 +0,0 @@
-Content-Type: text/plain; charset="us-ascii"
-MIME-Version: 1.0
-Content-Transfer-Encoding: 7bit
-Content-Disposition: inline
diff --git a/a/2.txt b/a/2.txt
deleted file mode 100644
index 8133cf0..0000000
--- a/a/2.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-_______________________________________________
-linux-arm-kernel mailing list
-linux-arm-kernel@lists.infradead.org
-http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
diff --git a/a/content_digest b/N1/content_digest
index 71eaa2e..c35e822 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,18 +1,14 @@
- "From\0InKi Dae <inki.dae@samsung.com>\0"
+ "From\0inki.dae@samsung.com (InKi Dae)\0"
  "Subject\0[PATCH 1/3] FB: Add some members for CPU Interface.\0"
  "Date\0Tue, 29 Jun 2010 19:49:33 +0900\0"
- "To\0linux-arm-kernel@lists.infradead.org"
-  linux-fbdev-devel@lists.sourceforge.net
-  akpm@linux-foundation.org
- " Ben Dooks <ben-linux@fluff.org>\0"
- "Cc\0kmpark@infradead.org\0"
- "\02:1.1\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
+ "\00:1\0"
  "b\0"
  " CPU interface needs cs, wr setup, wr act and hold delay.\n"
  "I added some members for them to common framework.\n"
  "\n"
- "Signed-off-by: InKi Dae <inki.dae@samsung.com <mailto:p.osciak@samsung.com>>\n"
- "Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com\n"
+ "Signed-off-by: InKi Dae <inki.dae at samsung.com <mailto:p.osciak@samsung.com>>\n"
+ "Signed-off-by: Kyungmin Park <kyungmin.park at samsung.com\n"
  "<mailto:kyungmin.park@samsung.com>>\n"
  "---\n"
  "\n"
@@ -96,120 +92,13 @@
  "+\tu32 wr_hold;\n"
  "+};\n"
  "+\n"
- " extern const char *fb_mode_option;\n"
-  extern const struct fb_videomode vesa_modes[];
- "\02:1.2\0"
- "b\0"
- "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n"
- "<html>\n"
- "<head>\n"
- "\n"
- "<meta http-equiv=\"content-type\" content=\"text/html; charset=EUC-KR\">\n"
- "</head>\n"
- "<body bgcolor=\"#ffffff\" text=\"#000000\">\n"
- "<div class=\"moz-text-html\" lang=\"ko\">\n"
- "<div class=\"moz-text-html\" lang=\"ko\"> CPU interface needs cs, wr setup,\n"
- "wr act and hold delay.<br>\n"
- "I added some members for them to common framework.<br>\n"
- "<br>\n"
- "Signed-off-by: InKi Dae &lt;<a href=\"mailto:p.osciak@samsung.com\">inki.dae@samsung.com</a>&gt;<br>\n"
- "Signed-off-by: Kyungmin Park &lt;<a\n"
- " href=\"mailto:kyungmin.park@samsung.com\">kyungmin.park@samsung.com</a>&gt;<br>\n"
- "---<br>\n"
- "<br>\n"
- "diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c<br>\n"
- "<pre>index 0a4dbdc..74122d1 100644\n"
- "--- a/drivers/video/modedb.c\n"
- "+++ b/drivers/video/modedb.c\n"
- "@@ -759,6 +759,27 @@ void fb_videomode_to_var(struct fb_var_screeninfo *var,\n"
- " }\n"
- " \n"
- " /**\n"
- "+ * fb_cpumode_to_var - convert fb_cpumode to fb_var_screeninfo\n"
- "+ * @var: pointer to struct fb_var_screeninfo\n"
- "+ * @mode: pointer to struct fb_cpumode\n"
- "+ */\n"
- "+void fb_cmdmode_to_var(struct fb_var_screeninfo *var,\n"
- "+\t\t\t const struct fb_cmdmode *mode)\n"
- "+{\n"
- "+\tvar-&gt;xres = mode-&gt;xres;\n"
- "+\tvar-&gt;yres = mode-&gt;yres;\n"
- "+\tvar-&gt;xres_virtual = mode-&gt;xres;\n"
- "+\tvar-&gt;yres_virtual = mode-&gt;yres;\n"
- "+\tvar-&gt;xoffset = 0;\n"
- "+\tvar-&gt;yoffset = 0;\n"
- "+\tvar-&gt;pixclock = mode-&gt;pixclock;\n"
- "+\tvar-&gt;cs_setup = mode-&gt;cs_setup;\n"
- "+\tvar-&gt;wr_setup = mode-&gt;wr_setup;\n"
- "+\tvar-&gt;wr_act = mode-&gt;wr_act;\n"
- "+\tvar-&gt;wr_hold = mode-&gt;wr_hold;\n"
- "+}\n"
- "+\n"
- "+/**\n"
- "  * fb_mode_is_equal - compare 2 videomodes\n"
- "  * @mode1: first videomode\n"
- "  * @mode2: second videomode\n"
- "@@ -1048,6 +1069,7 @@ finished:\n"
- " EXPORT_SYMBOL(fb_find_best_display);\n"
- " \n"
- " EXPORT_SYMBOL(fb_videomode_to_var);\n"
- "+EXPORT_SYMBOL(fb_cmdmode_to_var);\n"
- " EXPORT_SYMBOL(fb_var_to_videomode);\n"
- " EXPORT_SYMBOL(fb_mode_is_equal);\n"
- " EXPORT_SYMBOL(fb_add_videomode);\n"
- "diff --git a/include/linux/fb.h b/include/linux/fb.h\n"
- "index 907ace3..73381c3 100644\n"
- "--- a/include/linux/fb.h\n"
- "+++ b/include/linux/fb.h\n"
- "@@ -269,6 +269,12 @@ struct fb_var_screeninfo {\n"
- " \t__u32 vmode;\t\t\t/* see FB_VMODE_*\t\t*/\n"
- " \t__u32 rotate;\t\t\t/* angle we rotate counter clockwise */\n"
- " \t__u32 reserved[5];\t\t/* Reserved for future compatibility */\n"
- "+\n"
- "+\t/* For cpu interface timing. */\n"
- "+\t__u32 cs_setup;\n"
- "+\t__u32 wr_setup;\n"
- "+\t__u32 wr_act;\n"
- "+\t__u32 wr_hold;\n"
- " };\n"
- " \n"
- " struct fb_cmap {\n"
- "@@ -1117,11 +1123,24 @@ struct fb_videomode {\n"
- " \tu32 lower_margin;\n"
- " \tu32 hsync_len;\n"
- " \tu32 vsync_len;\n"
- "+\tu32 cmd_allow_len;\n"
- " \tu32 sync;\n"
- " \tu32 vmode;\n"
- " \tu32 flag;\n"
- " };\n"
- " \n"
- "+struct fb_cmdmode {\n"
- "+\tconst char *name;\t/* optional */\n"
- "+\tu32 refresh;\t\t/* optional */\n"
- "+\tu32 xres;\n"
- "+\tu32 yres;\n"
- "+\tu32 pixclock;\n"
- "+\tu32 cs_setup;\n"
- "+\tu32 wr_setup;\n"
- "+\tu32 wr_act;\n"
- "+\tu32 wr_hold;\n"
- "+};\n"
- "+\n"
  " extern const char *fb_mode_option;\n"
  " extern const struct fb_videomode vesa_modes[];\n"
  " \n"
- "</pre>\n"
- "<br>\n"
- "</div>\n"
- "</div>\n"
- "</body>\n"
- "</html>\n"
- "\01:2\0"
- "b\0"
- "_______________________________________________\n"
- "linux-arm-kernel mailing list\n"
- "linux-arm-kernel@lists.infradead.org\n"
- http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
+ "\n"
+ "\n"
+ "-------------- next part --------------\n"
+ "An HTML attachment was scrubbed...\n"
+ URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20100629/17de1d8e/attachment-0001.html>
 
-8234af6138ad50f0299ed52770dac2419ab65954cf618c37c35db91ad0c9d290
+54725617a621a5cfa9017149bf8ad54cfc5b58f45612fbbf30488e4adc54af12

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.