All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <5112659D.50808@ti.com>

diff --git a/N1/1.1.hdr b/N1/1.1.hdr
new file mode 100644
index 0000000..5a03d9c
--- /dev/null
+++ b/N1/1.1.hdr
@@ -0,0 +1,2 @@
+Content-Type: text/plain; charset=ISO-8859-15
+Content-Transfer-Encoding: quoted-printable
diff --git a/a/1.txt b/N1/1.1.txt
similarity index 60%
rename from a/1.txt
rename to N1/1.1.txt
index bf17917..a01027b 100644
--- a/a/1.txt
+++ b/N1/1.1.txt
@@ -41,32 +41,3 @@ I can send the patches properly for review, but I've also attached them
 here so Rob can test.
 
  Tomi
-
--------------- next part --------------
-A non-text attachment was scrubbed...
-Name: 0001-OMAPDSS-add-support-for-ARCH_MULTIPLATFORM.patch
-Type: text/x-patch
-Size: 1019 bytes
-Desc: not available
-URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment.bin>
--------------- next part --------------
-A non-text attachment was scrubbed...
-Name: 0002-omap_vout-fix-the-dependency-on-OMAPDSS.patch
-Type: text/x-patch
-Size: 1211 bytes
-Desc: not available
-URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment-0001.bin>
--------------- next part --------------
-A non-text attachment was scrubbed...
-Name: 0003-omapdrm-fix-the-dependency-on-OMAPDSS.patch
-Type: text/x-patch
-Size: 1097 bytes
-Desc: not available
-URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment-0002.bin>
--------------- next part --------------
-A non-text attachment was scrubbed...
-Name: signature.asc
-Type: application/pgp-signature
-Size: 899 bytes
-Desc: OpenPGP digital signature
-URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment.sig>
diff --git a/N1/1.2.hdr b/N1/1.2.hdr
new file mode 100644
index 0000000..9e216f8
--- /dev/null
+++ b/N1/1.2.hdr
@@ -0,0 +1,5 @@
+Content-Type: text/x-patch;
+ name="0001-OMAPDSS-add-support-for-ARCH_MULTIPLATFORM.patch"
+Content-Transfer-Encoding: quoted-printable
+Content-Disposition: attachment;
+ filename*0="0001-OMAPDSS-add-support-for-ARCH_MULTIPLATFORM.patch"
diff --git a/N1/1.2.txt b/N1/1.2.txt
new file mode 100644
index 0000000..a8b8366
--- /dev/null
+++ b/N1/1.2.txt
@@ -0,0 +1,32 @@
+From b2a01a69089c965a703125e001037eff4f09af4e Mon Sep 17 00:00:00 2001
+From: Tomi Valkeinen <tomi.valkeinen@ti.com>
+Date: Wed, 6 Feb 2013 15:21:14 +0200
+Subject: [PATCH 1/3] OMAPDSS: add support for ARCH_MULTIPLATFORM
+
+omapdss, omapfb and omap's panel drivers currently depend on
+ARCH_OMAP2PLUS. To make omapdss usable on multiplatform builds, add an
+optinal dependency to ARCH_MULTIPLATFORM.
+
+No other change is needed, as omapdss, omapfb and panel drivers already
+compile on non-omap platforms.
+
+Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
+---
+ drivers/video/omap2/Kconfig |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/video/omap2/Kconfig b/drivers/video/omap2/Kconfig
+index b07b2b0..e1cd489 100644
+--- a/drivers/video/omap2/Kconfig
++++ b/drivers/video/omap2/Kconfig
+@@ -1,7 +1,7 @@
+ config OMAP2_VRFB
+ 	bool
+ 
+-if ARCH_OMAP2PLUS
++if ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
+ 
+ source "drivers/video/omap2/dss/Kconfig"
+ source "drivers/video/omap2/omapfb/Kconfig"
+-- 
+1.7.10.4
diff --git a/N1/1.3.hdr b/N1/1.3.hdr
new file mode 100644
index 0000000..c290f9f
--- /dev/null
+++ b/N1/1.3.hdr
@@ -0,0 +1,5 @@
+Content-Type: text/x-patch;
+ name="0002-omap_vout-fix-the-dependency-on-OMAPDSS.patch"
+Content-Transfer-Encoding: quoted-printable
+Content-Disposition: attachment;
+ filename="0002-omap_vout-fix-the-dependency-on-OMAPDSS.patch"
diff --git a/N1/1.3.txt b/N1/1.3.txt
new file mode 100644
index 0000000..d41f43c
--- /dev/null
+++ b/N1/1.3.txt
@@ -0,0 +1,34 @@
+From 61fb1e64b5374510bfaeb2137a5af5f6ea33ba34 Mon Sep 17 00:00:00 2001
+From: Tomi Valkeinen <tomi.valkeinen@ti.com>
+Date: Wed, 6 Feb 2013 15:54:08 +0200
+Subject: [PATCH 2/3] omap_vout: fix the dependency on OMAPDSS
+
+omap_vout uses "select" in Kconfig to enable omapdss. This doesn't work
+correctly, as "select" forces omapdss to be enabled in the config even
+if it normally could not be enabled.
+
+Instead of using select, this patch changes omap_vout to use "depend
+on".
+
+Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
+---
+ drivers/media/platform/omap/Kconfig |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/media/platform/omap/Kconfig b/drivers/media/platform/omap/Kconfig
+index 390ab09..c102615 100644
+--- a/drivers/media/platform/omap/Kconfig
++++ b/drivers/media/platform/omap/Kconfig
+@@ -4,9 +4,9 @@ config VIDEO_OMAP2_VOUT_VRFB
+ config VIDEO_OMAP2_VOUT
+ 	tristate "OMAP2/OMAP3 V4L2-Display driver"
+ 	depends on ARCH_OMAP2 || ARCH_OMAP3
++	depends on OMAP2_DSS
+ 	select VIDEOBUF_GEN
+ 	select VIDEOBUF_DMA_CONTIG
+-	select OMAP2_DSS
+ 	select OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3
+ 	select VIDEO_OMAP2_VOUT_VRFB if VIDEO_OMAP2_VOUT && OMAP2_VRFB
+ 	default n
+-- 
+1.7.10.4
diff --git a/N1/1.4.hdr b/N1/1.4.hdr
new file mode 100644
index 0000000..4c1341d
--- /dev/null
+++ b/N1/1.4.hdr
@@ -0,0 +1,5 @@
+Content-Type: text/x-patch;
+ name="0003-omapdrm-fix-the-dependency-on-OMAPDSS.patch"
+Content-Transfer-Encoding: quoted-printable
+Content-Disposition: attachment;
+ filename="0003-omapdrm-fix-the-dependency-on-OMAPDSS.patch"
diff --git a/N1/1.4.txt b/N1/1.4.txt
new file mode 100644
index 0000000..63b3dc6
--- /dev/null
+++ b/N1/1.4.txt
@@ -0,0 +1,33 @@
+From aca9e04648a6cef98f65ff754bf903f456c8bc5d Mon Sep 17 00:00:00 2001
+From: Tomi Valkeinen <tomi.valkeinen@ti.com>
+Date: Wed, 6 Feb 2013 16:03:44 +0200
+Subject: [PATCH 3/3] omapdrm: fix the dependency on OMAPDSS
+
+omapdrm uses "select" in Kconfig to enable omapdss. This doesn't work
+correctly, as "select" forces omapdss to be enabled in the config even
+if it normally could not be enabled.
+
+Instead of using select, this patch changes omapdrm to use "depend
+on".
+
+Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
+---
+ drivers/staging/omapdrm/Kconfig |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/staging/omapdrm/Kconfig b/drivers/staging/omapdrm/Kconfig
+index b724a41..09f65dc 100644
+--- a/drivers/staging/omapdrm/Kconfig
++++ b/drivers/staging/omapdrm/Kconfig
+@@ -3,8 +3,8 @@ config DRM_OMAP
+ 	tristate "OMAP DRM"
+ 	depends on DRM && !CONFIG_FB_OMAP2
+ 	depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
++	depends on OMAP2_DSS
+ 	select DRM_KMS_HELPER
+-	select OMAP2_DSS
+ 	select FB_SYS_FILLRECT
+ 	select FB_SYS_COPYAREA
+ 	select FB_SYS_IMAGEBLIT
+-- 
+1.7.10.4
diff --git a/N1/2.bin b/N1/2.bin
new file mode 100644
index 0000000..4d1f396
--- /dev/null
+++ b/N1/2.bin
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.11 (GNU/Linux)
+Comment: Using GnuPG with undefined - http://www.enigmail.net/
+
+iQIcBAEBAgAGBQJREmWdAAoJEPo9qoy8lh71n08P/350+p9yw7cypvkRm0sdNuGk
+dQHy7ND7y2i7S8ZuUwHsyYG1/dIHur+N4L2rTtCzEjGxTdd1Wj17zGSbfIGW8kh/
+lefG6zoeGhkO/k2uXHZZAx5Sntm9TjfF/tM0tRDuQJGfUZJ+BgItpMZ9BHHOtX6x
+O7Lw0LQmaln+2Gycfxo8wCcak/jbQQ58cctyaPw5yWIUR4GPcIZvZo9jopjtSQVF
+4aP1uF5+i0WE+z81L5VruDb9CEKQuGNxrrYA9Uc6JonLeT+HAwlwYV78aXAP+K19
+4rNuaYxrBvmv+JBYNJFMdu7dcsedzWrigEyQUspmRKYWQ4ehKYErR+vheFCyVkfL
+oBTLCx7FDx9Rvugd9dKlAYmcFnJXrZDPdl5wZ7czG0LuC2Ony7uMddvqgy7Lv5qZ
+Fhr2QhI3hvxwsTMU4FSiOK/fFcD544/lD/RoQj6j1US8r5dbfo84no+jC2DNZbkG
+ygMJlpePcKBFquR+0I9cU/iKuQJZUg3hb+sA0Kfb813f2YJQUVoBwHqh8HyHrQwD
+/Zrh/XbegbbxRetg7cYrmsUTuECA/V57t32hSIBkoxGjCCaSjPKkR8MRBdQIYcn5
+TdaB60TgLzaaFKzOdAbyMD4fZNXxMVDOMfxs1m7F41//cux+hwV/5W1jBui75jCJ
+wvoacAojawXxmzbz8yVe
+=Nq6L
+-----END PGP SIGNATURE-----
diff --git a/N1/2.hdr b/N1/2.hdr
new file mode 100644
index 0000000..a198b95
--- /dev/null
+++ b/N1/2.hdr
@@ -0,0 +1,3 @@
+Content-Type: application/pgp-signature; name="signature.asc"
+Content-Description: OpenPGP digital signature
+Content-Disposition: attachment; filename="signature.asc"
diff --git a/a/content_digest b/N1/content_digest
index a2f12ff..18df4db 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,11 +1,18 @@
  "ref\01358891160-9534-1-git-send-email-robdclark@gmail.com\0"
  "ref\0201301222153.19580.arnd@arndb.de\0"
  "ref\0201302051631.40254.arnd@arndb.de\0"
- "From\0tomi.valkeinen@ti.com (Tomi Valkeinen)\0"
- "Subject\0[PATCH] OMAPDSS: enable omapdss for ARCH_MULTIPLATFORM\0"
+ "From\0Tomi Valkeinen <tomi.valkeinen@ti.com>\0"
+ "Subject\0Re: [PATCH] OMAPDSS: enable omapdss for ARCH_MULTIPLATFORM\0"
  "Date\0Wed, 6 Feb 2013 16:15:57 +0200\0"
- "To\0linux-arm-kernel@lists.infradead.org\0"
- "\00:1\0"
+ "To\0Arnd Bergmann <arnd@arndb.de>\0"
+ "Cc\0Rob Clark <robdclark@gmail.com>"
+  <linux-arm-kernel@lists.infradead.org>
+  <patches@linaro.org>
+  <linux-kernel@vger.kernel.org>
+  <arm@kernel.org>
+  Tony Lindgren <tony@atomide.com>
+ " Greg KH <greg@kroah.com>\0"
+ "\02:1.1\0"
  "b\0"
  "Hi Arnd, Rob,\n"
  "\n"
@@ -49,35 +56,136 @@
  "I can send the patches properly for review, but I've also attached them\n"
  "here so Rob can test.\n"
  "\n"
- " Tomi\n"
- "\n"
- "-------------- next part --------------\n"
- "A non-text attachment was scrubbed...\n"
- "Name: 0001-OMAPDSS-add-support-for-ARCH_MULTIPLATFORM.patch\n"
- "Type: text/x-patch\n"
- "Size: 1019 bytes\n"
- "Desc: not available\n"
- "URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment.bin>\n"
- "-------------- next part --------------\n"
- "A non-text attachment was scrubbed...\n"
- "Name: 0002-omap_vout-fix-the-dependency-on-OMAPDSS.patch\n"
- "Type: text/x-patch\n"
- "Size: 1211 bytes\n"
- "Desc: not available\n"
- "URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment-0001.bin>\n"
- "-------------- next part --------------\n"
- "A non-text attachment was scrubbed...\n"
- "Name: 0003-omapdrm-fix-the-dependency-on-OMAPDSS.patch\n"
- "Type: text/x-patch\n"
- "Size: 1097 bytes\n"
- "Desc: not available\n"
- "URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment-0002.bin>\n"
- "-------------- next part --------------\n"
- "A non-text attachment was scrubbed...\n"
- "Name: signature.asc\n"
- "Type: application/pgp-signature\n"
- "Size: 899 bytes\n"
- "Desc: OpenPGP digital signature\n"
- URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130206/6eef4ee4/attachment.sig>
+  Tomi
+ "\02:1.2\0"
+ "fn\00001-OMAPDSS-add-support-for-ARCH_MULTIPLATFORM.patch\0"
+ "b\0"
+ "From b2a01a69089c965a703125e001037eff4f09af4e Mon Sep 17 00:00:00 2001\n"
+ "From: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "Date: Wed, 6 Feb 2013 15:21:14 +0200\n"
+ "Subject: [PATCH 1/3] OMAPDSS: add support for ARCH_MULTIPLATFORM\n"
+ "\n"
+ "omapdss, omapfb and omap's panel drivers currently depend on\n"
+ "ARCH_OMAP2PLUS. To make omapdss usable on multiplatform builds, add an\n"
+ "optinal dependency to ARCH_MULTIPLATFORM.\n"
+ "\n"
+ "No other change is needed, as omapdss, omapfb and panel drivers already\n"
+ "compile on non-omap platforms.\n"
+ "\n"
+ "Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "---\n"
+ " drivers/video/omap2/Kconfig |    2 +-\n"
+ " 1 file changed, 1 insertion(+), 1 deletion(-)\n"
+ "\n"
+ "diff --git a/drivers/video/omap2/Kconfig b/drivers/video/omap2/Kconfig\n"
+ "index b07b2b0..e1cd489 100644\n"
+ "--- a/drivers/video/omap2/Kconfig\n"
+ "+++ b/drivers/video/omap2/Kconfig\n"
+ "@@ -1,7 +1,7 @@\n"
+ " config OMAP2_VRFB\n"
+ " \tbool\n"
+ " \n"
+ "-if ARCH_OMAP2PLUS\n"
+ "+if ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM\n"
+ " \n"
+ " source \"drivers/video/omap2/dss/Kconfig\"\n"
+ " source \"drivers/video/omap2/omapfb/Kconfig\"\n"
+ "-- \n"
+ 1.7.10.4
+ "\02:1.3\0"
+ "fn\00002-omap_vout-fix-the-dependency-on-OMAPDSS.patch\0"
+ "b\0"
+ "From 61fb1e64b5374510bfaeb2137a5af5f6ea33ba34 Mon Sep 17 00:00:00 2001\n"
+ "From: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "Date: Wed, 6 Feb 2013 15:54:08 +0200\n"
+ "Subject: [PATCH 2/3] omap_vout: fix the dependency on OMAPDSS\n"
+ "\n"
+ "omap_vout uses \"select\" in Kconfig to enable omapdss. This doesn't work\n"
+ "correctly, as \"select\" forces omapdss to be enabled in the config even\n"
+ "if it normally could not be enabled.\n"
+ "\n"
+ "Instead of using select, this patch changes omap_vout to use \"depend\n"
+ "on\".\n"
+ "\n"
+ "Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "---\n"
+ " drivers/media/platform/omap/Kconfig |    2 +-\n"
+ " 1 file changed, 1 insertion(+), 1 deletion(-)\n"
+ "\n"
+ "diff --git a/drivers/media/platform/omap/Kconfig b/drivers/media/platform/omap/Kconfig\n"
+ "index 390ab09..c102615 100644\n"
+ "--- a/drivers/media/platform/omap/Kconfig\n"
+ "+++ b/drivers/media/platform/omap/Kconfig\n"
+ "@@ -4,9 +4,9 @@ config VIDEO_OMAP2_VOUT_VRFB\n"
+ " config VIDEO_OMAP2_VOUT\n"
+ " \ttristate \"OMAP2/OMAP3 V4L2-Display driver\"\n"
+ " \tdepends on ARCH_OMAP2 || ARCH_OMAP3\n"
+ "+\tdepends on OMAP2_DSS\n"
+ " \tselect VIDEOBUF_GEN\n"
+ " \tselect VIDEOBUF_DMA_CONTIG\n"
+ "-\tselect OMAP2_DSS\n"
+ " \tselect OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3\n"
+ " \tselect VIDEO_OMAP2_VOUT_VRFB if VIDEO_OMAP2_VOUT && OMAP2_VRFB\n"
+ " \tdefault n\n"
+ "-- \n"
+ 1.7.10.4
+ "\02:1.4\0"
+ "fn\00003-omapdrm-fix-the-dependency-on-OMAPDSS.patch\0"
+ "b\0"
+ "From aca9e04648a6cef98f65ff754bf903f456c8bc5d Mon Sep 17 00:00:00 2001\n"
+ "From: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "Date: Wed, 6 Feb 2013 16:03:44 +0200\n"
+ "Subject: [PATCH 3/3] omapdrm: fix the dependency on OMAPDSS\n"
+ "\n"
+ "omapdrm uses \"select\" in Kconfig to enable omapdss. This doesn't work\n"
+ "correctly, as \"select\" forces omapdss to be enabled in the config even\n"
+ "if it normally could not be enabled.\n"
+ "\n"
+ "Instead of using select, this patch changes omapdrm to use \"depend\n"
+ "on\".\n"
+ "\n"
+ "Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>\n"
+ "---\n"
+ " drivers/staging/omapdrm/Kconfig |    2 +-\n"
+ " 1 file changed, 1 insertion(+), 1 deletion(-)\n"
+ "\n"
+ "diff --git a/drivers/staging/omapdrm/Kconfig b/drivers/staging/omapdrm/Kconfig\n"
+ "index b724a41..09f65dc 100644\n"
+ "--- a/drivers/staging/omapdrm/Kconfig\n"
+ "+++ b/drivers/staging/omapdrm/Kconfig\n"
+ "@@ -3,8 +3,8 @@ config DRM_OMAP\n"
+ " \ttristate \"OMAP DRM\"\n"
+ " \tdepends on DRM && !CONFIG_FB_OMAP2\n"
+ " \tdepends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM\n"
+ "+\tdepends on OMAP2_DSS\n"
+ " \tselect DRM_KMS_HELPER\n"
+ "-\tselect OMAP2_DSS\n"
+ " \tselect FB_SYS_FILLRECT\n"
+ " \tselect FB_SYS_COPYAREA\n"
+ " \tselect FB_SYS_IMAGEBLIT\n"
+ "-- \n"
+ 1.7.10.4
+ "\01:2\0"
+ "fn\0signature.asc\0"
+ "d\0OpenPGP digital signature\0"
+ "b\0"
+ "-----BEGIN PGP SIGNATURE-----\n"
+ "Version: GnuPG v1.4.11 (GNU/Linux)\n"
+ "Comment: Using GnuPG with undefined - http://www.enigmail.net/\n"
+ "\n"
+ "iQIcBAEBAgAGBQJREmWdAAoJEPo9qoy8lh71n08P/350+p9yw7cypvkRm0sdNuGk\n"
+ "dQHy7ND7y2i7S8ZuUwHsyYG1/dIHur+N4L2rTtCzEjGxTdd1Wj17zGSbfIGW8kh/\n"
+ "lefG6zoeGhkO/k2uXHZZAx5Sntm9TjfF/tM0tRDuQJGfUZJ+BgItpMZ9BHHOtX6x\n"
+ "O7Lw0LQmaln+2Gycfxo8wCcak/jbQQ58cctyaPw5yWIUR4GPcIZvZo9jopjtSQVF\n"
+ "4aP1uF5+i0WE+z81L5VruDb9CEKQuGNxrrYA9Uc6JonLeT+HAwlwYV78aXAP+K19\n"
+ "4rNuaYxrBvmv+JBYNJFMdu7dcsedzWrigEyQUspmRKYWQ4ehKYErR+vheFCyVkfL\n"
+ "oBTLCx7FDx9Rvugd9dKlAYmcFnJXrZDPdl5wZ7czG0LuC2Ony7uMddvqgy7Lv5qZ\n"
+ "Fhr2QhI3hvxwsTMU4FSiOK/fFcD544/lD/RoQj6j1US8r5dbfo84no+jC2DNZbkG\n"
+ "ygMJlpePcKBFquR+0I9cU/iKuQJZUg3hb+sA0Kfb813f2YJQUVoBwHqh8HyHrQwD\n"
+ "/Zrh/XbegbbxRetg7cYrmsUTuECA/V57t32hSIBkoxGjCCaSjPKkR8MRBdQIYcn5\n"
+ "TdaB60TgLzaaFKzOdAbyMD4fZNXxMVDOMfxs1m7F41//cux+hwV/5W1jBui75jCJ\n"
+ "wvoacAojawXxmzbz8yVe\n"
+ "=Nq6L\n"
+ "-----END PGP SIGNATURE-----\n"
 
-9cb879173f3d5dbe7a3bf428fe74f14eb25eff90a7dd8c6d2041325e585b6f9d
+17e839fc9510df42dcc494575a1140c281d99bb976ecf14afbd7eede44a51850

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.