All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <564A899C.4040402@samsung.com>

diff --git a/a/1.txt b/N1/1.txt
index 050e005..8e011b9 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -13,3 +13,13 @@ As for the patch I think everything can be converted to init/initdata
 
 Best regards,
 Krzysztof
+
+
+
+-------------- next part --------------
+A non-text attachment was scrubbed...
+Name: init_data.patch
+Type: text/x-patch
+Size: 3760 bytes
+Desc: not available
+URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20151117/3cab94a0/attachment.bin>
diff --git a/a/2.hdr b/a/2.hdr
deleted file mode 100644
index 124396e..0000000
--- a/a/2.hdr
+++ /dev/null
@@ -1,5 +0,0 @@
-Content-Type: text/x-patch;
- name="init_data.patch"
-Content-Transfer-Encoding: 7bit
-Content-Disposition: attachment;
- filename="init_data.patch"
diff --git a/a/2.txt b/a/2.txt
deleted file mode 100644
index 438749b..0000000
--- a/a/2.txt
+++ /dev/null
@@ -1,90 +0,0 @@
-diff --git a/arch/arm/mach-s3c24xx/pll-s3c2410.c b/arch/arm/mach-s3c24xx/pll-s3c2410.c
-index 5e37d368594b..d9fd5319379b 100644
---- a/arch/arm/mach-s3c24xx/pll-s3c2410.c
-+++ b/arch/arm/mach-s3c24xx/pll-s3c2410.c
-@@ -65,12 +65,12 @@ static struct cpufreq_frequency_table pll_vals_12MHz[] = {
-     { .frequency = 270000000, .driver_data = PLLVAL(127, 1, 1),  },
- };
- 
--static int s3c2410_plls_add(struct device *dev, struct subsys_interface *sif)
-+static int __init s3c2410_plls_add(struct device *dev, struct subsys_interface *sif)
- {
- 	return s3c_plltab_register(pll_vals_12MHz, ARRAY_SIZE(pll_vals_12MHz));
- }
- 
--static struct subsys_interface s3c2410_plls_interface = {
-+static struct subsys_interface s3c2410_plls_interface __initdata = {
- 	.name		= "s3c2410_plls",
- 	.subsys		= &s3c2410_subsys,
- 	.add_dev	= s3c2410_plls_add,
-@@ -83,7 +83,7 @@ static int __init s3c2410_pll_init(void)
- }
- arch_initcall(s3c2410_pll_init);
- 
--static struct subsys_interface s3c2410a_plls_interface = {
-+static struct subsys_interface s3c2410a_plls_interface __initdata = {
- 	.name		= "s3c2410a_plls",
- 	.subsys		= &s3c2410a_subsys,
- 	.add_dev	= s3c2410_plls_add,
-diff --git a/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c b/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c
-index a19460e6e7b0..01958230cf2f 100644
---- a/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c
-+++ b/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c
-@@ -50,7 +50,7 @@ static struct cpufreq_frequency_table s3c2440_plls_12[] __initdata = {
- 	{ .frequency = 400000000,	.driver_data = PLLVAL(0x5c, 1, 1),  }, 	/* FVco 800.000000 */
- };
- 
--static int s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)
-+static int __init s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)
- {
- 	struct clk *xtal_clk;
- 	unsigned long xtal;
-@@ -71,7 +71,7 @@ static int s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)
- 	return 0;
- }
- 
--static struct subsys_interface s3c2440_plls12_interface = {
-+static struct subsys_interface s3c2440_plls12_interface __initdata = {
- 	.name		= "s3c2440_plls12",
- 	.subsys		= &s3c2440_subsys,
- 	.add_dev	= s3c2440_plls12_add,
-@@ -84,7 +84,7 @@ static int __init s3c2440_pll_12mhz(void)
- }
- arch_initcall(s3c2440_pll_12mhz);
- 
--static struct subsys_interface s3c2442_plls12_interface = {
-+static struct subsys_interface s3c2442_plls12_interface __initdata = {
- 	.name		= "s3c2442_plls12",
- 	.subsys		= &s3c2442_subsys,
- 	.add_dev	= s3c2440_plls12_add,
-diff --git a/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c b/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c
-index 1191b2905625..db9f476ab581 100644
---- a/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c
-+++ b/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c
-@@ -78,7 +78,7 @@ static struct cpufreq_frequency_table s3c2440_plls_169344[] __initdata = {
- 	{ .frequency = 402192000,	.driver_data = PLLVAL(87, 2, 1), 	}, 	/* FVco 804.384000 */
- };
- 
--static int s3c2440_plls169344_add(struct device *dev,
-+static int __init s3c2440_plls169344_add(struct device *dev,
- 				  struct subsys_interface *sif)
- {
- 	struct clk *xtal_clk;
-@@ -100,7 +100,7 @@ static int s3c2440_plls169344_add(struct device *dev,
- 	return 0;
- }
- 
--static struct subsys_interface s3c2440_plls169344_interface = {
-+static struct subsys_interface s3c2440_plls169344_interface __initdata  = {
- 	.name		= "s3c2440_plls169344",
- 	.subsys		= &s3c2440_subsys,
- 	.add_dev	= s3c2440_plls169344_add,
-@@ -112,7 +112,7 @@ static int __init s3c2440_pll_16934400(void)
- }
- arch_initcall(s3c2440_pll_16934400);
- 
--static struct subsys_interface s3c2442_plls169344_interface = {
-+static struct subsys_interface s3c2442_plls169344_interface __initdata = {
- 	.name		= "s3c2442_plls169344",
- 	.subsys		= &s3c2442_subsys,
- 	.add_dev	= s3c2440_plls169344_add,
diff --git a/a/content_digest b/N1/content_digest
index 14729d2..50012eb 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,18 +1,11 @@
  "ref\08497197.sYxqVOch7s@wuerfel\0"
  "ref\028389377.zxoR5rtJ13@vostro.rjw.lan\0"
  "ref\04389196.cuM78vZZnJ@wuerfel\0"
- "From\0Krzysztof Kozlowski <k.kozlowski@samsung.com>\0"
- "Subject\0Re: [PATCH] cpufreq: do not mark s3c2410_plls_add as __init\0"
+ "From\0k.kozlowski@samsung.com (Krzysztof Kozlowski)\0"
+ "Subject\0[PATCH] cpufreq: do not mark s3c2410_plls_add as __init\0"
  "Date\0Tue, 17 Nov 2015 10:57:48 +0900\0"
- "To\0Arnd Bergmann <arnd@arndb.de>"
- " Rafael J. Wysocki <rjw@rjwysocki.net>\0"
- "Cc\0Kukjin Kim <kgene@kernel.org>"
-  Viresh Kumar <viresh.kumar@linaro.org>
-  linux-arm-kernel@lists.infradead.org
-  linux-samsung-soc@vger.kernel.org
-  linux-kernel@vger.kernel.org
- " linux-pm@vger.kernel.org\0"
- "\01:1\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
+ "\00:1\0"
  "b\0"
  "On 17.11.2015 07:17, Arnd Bergmann wrote:\n"
  "> On Monday 16 November 2015 23:36:42 Rafael J. Wysocki wrote:\n"
@@ -28,99 +21,16 @@
  "(as in attachment).\n"
  "\n"
  "Best regards,\n"
- Krzysztof
- "\01:2\0"
- "fn\0init_data.patch\0"
- "b\0"
- "diff --git a/arch/arm/mach-s3c24xx/pll-s3c2410.c b/arch/arm/mach-s3c24xx/pll-s3c2410.c\n"
- "index 5e37d368594b..d9fd5319379b 100644\n"
- "--- a/arch/arm/mach-s3c24xx/pll-s3c2410.c\n"
- "+++ b/arch/arm/mach-s3c24xx/pll-s3c2410.c\n"
- "@@ -65,12 +65,12 @@ static struct cpufreq_frequency_table pll_vals_12MHz[] = {\n"
- "     { .frequency = 270000000, .driver_data = PLLVAL(127, 1, 1),  },\n"
- " };\n"
- " \n"
- "-static int s3c2410_plls_add(struct device *dev, struct subsys_interface *sif)\n"
- "+static int __init s3c2410_plls_add(struct device *dev, struct subsys_interface *sif)\n"
- " {\n"
- " \treturn s3c_plltab_register(pll_vals_12MHz, ARRAY_SIZE(pll_vals_12MHz));\n"
- " }\n"
- " \n"
- "-static struct subsys_interface s3c2410_plls_interface = {\n"
- "+static struct subsys_interface s3c2410_plls_interface __initdata = {\n"
- " \t.name\t\t= \"s3c2410_plls\",\n"
- " \t.subsys\t\t= &s3c2410_subsys,\n"
- " \t.add_dev\t= s3c2410_plls_add,\n"
- "@@ -83,7 +83,7 @@ static int __init s3c2410_pll_init(void)\n"
- " }\n"
- " arch_initcall(s3c2410_pll_init);\n"
- " \n"
- "-static struct subsys_interface s3c2410a_plls_interface = {\n"
- "+static struct subsys_interface s3c2410a_plls_interface __initdata = {\n"
- " \t.name\t\t= \"s3c2410a_plls\",\n"
- " \t.subsys\t\t= &s3c2410a_subsys,\n"
- " \t.add_dev\t= s3c2410_plls_add,\n"
- "diff --git a/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c b/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c\n"
- "index a19460e6e7b0..01958230cf2f 100644\n"
- "--- a/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c\n"
- "+++ b/arch/arm/mach-s3c24xx/pll-s3c2440-12000000.c\n"
- "@@ -50,7 +50,7 @@ static struct cpufreq_frequency_table s3c2440_plls_12[] __initdata = {\n"
- " \t{ .frequency = 400000000,\t.driver_data = PLLVAL(0x5c, 1, 1),  }, \t/* FVco 800.000000 */\n"
- " };\n"
- " \n"
- "-static int s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)\n"
- "+static int __init s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)\n"
- " {\n"
- " \tstruct clk *xtal_clk;\n"
- " \tunsigned long xtal;\n"
- "@@ -71,7 +71,7 @@ static int s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)\n"
- " \treturn 0;\n"
- " }\n"
- " \n"
- "-static struct subsys_interface s3c2440_plls12_interface = {\n"
- "+static struct subsys_interface s3c2440_plls12_interface __initdata = {\n"
- " \t.name\t\t= \"s3c2440_plls12\",\n"
- " \t.subsys\t\t= &s3c2440_subsys,\n"
- " \t.add_dev\t= s3c2440_plls12_add,\n"
- "@@ -84,7 +84,7 @@ static int __init s3c2440_pll_12mhz(void)\n"
- " }\n"
- " arch_initcall(s3c2440_pll_12mhz);\n"
- " \n"
- "-static struct subsys_interface s3c2442_plls12_interface = {\n"
- "+static struct subsys_interface s3c2442_plls12_interface __initdata = {\n"
- " \t.name\t\t= \"s3c2442_plls12\",\n"
- " \t.subsys\t\t= &s3c2442_subsys,\n"
- " \t.add_dev\t= s3c2440_plls12_add,\n"
- "diff --git a/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c b/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c\n"
- "index 1191b2905625..db9f476ab581 100644\n"
- "--- a/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c\n"
- "+++ b/arch/arm/mach-s3c24xx/pll-s3c2440-16934400.c\n"
- "@@ -78,7 +78,7 @@ static struct cpufreq_frequency_table s3c2440_plls_169344[] __initdata = {\n"
- " \t{ .frequency = 402192000,\t.driver_data = PLLVAL(87, 2, 1), \t}, \t/* FVco 804.384000 */\n"
- " };\n"
- " \n"
- "-static int s3c2440_plls169344_add(struct device *dev,\n"
- "+static int __init s3c2440_plls169344_add(struct device *dev,\n"
- " \t\t\t\t  struct subsys_interface *sif)\n"
- " {\n"
- " \tstruct clk *xtal_clk;\n"
- "@@ -100,7 +100,7 @@ static int s3c2440_plls169344_add(struct device *dev,\n"
- " \treturn 0;\n"
- " }\n"
- " \n"
- "-static struct subsys_interface s3c2440_plls169344_interface = {\n"
- "+static struct subsys_interface s3c2440_plls169344_interface __initdata  = {\n"
- " \t.name\t\t= \"s3c2440_plls169344\",\n"
- " \t.subsys\t\t= &s3c2440_subsys,\n"
- " \t.add_dev\t= s3c2440_plls169344_add,\n"
- "@@ -112,7 +112,7 @@ static int __init s3c2440_pll_16934400(void)\n"
- " }\n"
- " arch_initcall(s3c2440_pll_16934400);\n"
- " \n"
- "-static struct subsys_interface s3c2442_plls169344_interface = {\n"
- "+static struct subsys_interface s3c2442_plls169344_interface __initdata = {\n"
- " \t.name\t\t= \"s3c2442_plls169344\",\n"
- " \t.subsys\t\t= &s3c2442_subsys,\n"
- " \t.add_dev\t= s3c2440_plls169344_add,"
+ "Krzysztof\n"
+ "\n"
+ "\n"
+ "\n"
+ "-------------- next part --------------\n"
+ "A non-text attachment was scrubbed...\n"
+ "Name: init_data.patch\n"
+ "Type: text/x-patch\n"
+ "Size: 3760 bytes\n"
+ "Desc: not available\n"
+ URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20151117/3cab94a0/attachment.bin>
 
-5bc03763b038b143be39c5d7f109fce6f744b073a6a196c256576e31f2798fb2
+f8fe1d55e46bce6ddc0d6bb8daa0c6096fdb19de564cac8a4a626ece86d8dab3

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.