diff for duplicates of <20150723152701.GN3436@x1> diff --git a/a/1.txt b/N1/1.txt index 1c633b2..a4d5005 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -1,22 +1,23 @@ On Tue, 21 Jul 2015, S Twiss wrote: > From: S Twiss <stwiss.opensource@diasemi.com> -> +>=20 > Add MFD core driver support for a RTC component -> +>=20 > - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC > alarm and tick timer IRQ > - An appropriate mfd_cell has been added into da9062_devs[] to support -> a component .name = "da9062-rtc" and .of_compatible = "dlg,da9062-rtc" -> +> a component .name =3D "da9062-rtc" and .of_compatible =3D "dlg,da9062-= +rtc" +>=20 > Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com> -> +>=20 > --- > Checks performed with linux-next/next-20150708/scripts/checkpatch.pl > da9062-core.c total: 0 errors, 0 warnings, 523 lines checked -> This patch applies against linux-next and next-20150708 -> -> +> This patch applies against linux-next and next-20150708=20 +>=20 +>=20 > drivers/mfd/da9062-core.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) @@ -26,38 +27,47 @@ Applied, thanks. > index 4cf0643..b43cd24 100644 > --- a/drivers/mfd/da9062-core.c > +++ b/drivers/mfd/da9062-core.c -> @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] = { +> @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] =3D { > DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), > }; -> -> +static struct resource da9062_rtc_resources[] = { +> =20 +> +static struct resource da9062_rtc_resources[] =3D { > + DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), > + DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), > +}; > + -> static const struct mfd_cell da9062_devs[] = { +> static const struct mfd_cell da9062_devs[] =3D { > { -> .name = "da9062-core", -> @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] = { -> .resources = da9062_thermal_resources, -> .of_compatible = "dlg,da9062-thermal", +> .name =3D "da9062-core", +> @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] =3D { +> .resources =3D da9062_thermal_resources, +> .of_compatible =3D "dlg,da9062-thermal", > }, > + { -> + .name = "da9062-rtc", -> + .num_resources = ARRAY_SIZE(da9062_rtc_resources), -> + .resources = da9062_rtc_resources, -> + .of_compatible = "dlg,da9062-rtc", +> + .name =3D "da9062-rtc", +> + .num_resources =3D ARRAY_SIZE(da9062_rtc_resources), +> + .resources =3D da9062_rtc_resources, +> + .of_compatible =3D "dlg,da9062-rtc", > + }, > }; -> +> =20 > static int da9062_clear_fault_log(struct da9062 *chip) --- +--=20 Lee Jones Linaro STMicroelectronics Landing Team Lead -Linaro.org │ Open source software for ARM SoCs +Linaro.org =E2=94=82 Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog --- -To unsubscribe from this list: send the line "unsubscribe linux-input" in -the body of a message to majordomo@vger.kernel.org -More majordomo info at http://vger.kernel.org/majordomo-info.html + +--=20 +--=20 +You received this message because you are subscribed to "rtc-linux". +Membership options at http://groups.google.com/group/rtc-linux . +Please read http://groups.google.com/group/rtc-linux/web/checklist +before submitting a driver. +---=20 +You received this message because you are subscribed to the Google Groups "= +rtc-linux" group. +To unsubscribe from this group and stop receiving emails from it, send an e= +mail to rtc-linux+unsubscribe@googlegroups.com. +For more options, visit https://groups.google.com/d/optout. diff --git a/a/content_digest b/N1/content_digest index c9d3b00..20e71ae 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,7 +1,7 @@ "ref\0cover.1437474547.git.stwiss.opensource@diasemi.com\0" "ref\07abaa10f4089b1adec4970d9c581a9f35992ee02.1437474547.git.stwiss.opensource@diasemi.com\0" "From\0Lee Jones <lee.jones@linaro.org>\0" - "Subject\0Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core\0" + "Subject\0[rtc-linux] Re: [PATCH V3 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core\0" "Date\0Thu, 23 Jul 2015 16:27:01 +0100\0" "To\0S Twiss <stwiss.opensource@diasemi.com>\0" "Cc\0DEVICETREE <devicetree@vger.kernel.org>" @@ -23,22 +23,23 @@ "On Tue, 21 Jul 2015, S Twiss wrote:\n" "\n" "> From: S Twiss <stwiss.opensource@diasemi.com>\n" - "> \n" + ">=20\n" "> Add MFD core driver support for a RTC component\n" - "> \n" + ">=20\n" "> - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC\n" "> alarm and tick timer IRQ\n" "> - An appropriate mfd_cell has been added into da9062_devs[] to support\n" - "> a component .name = \"da9062-rtc\" and .of_compatible = \"dlg,da9062-rtc\"\n" - "> \n" + "> a component .name =3D \"da9062-rtc\" and .of_compatible =3D \"dlg,da9062-=\n" + "rtc\"\n" + ">=20\n" "> Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com>\n" - "> \n" + ">=20\n" "> ---\n" "> Checks performed with linux-next/next-20150708/scripts/checkpatch.pl\n" "> da9062-core.c total: 0 errors, 0 warnings, 523 lines checked\n" - "> This patch applies against linux-next and next-20150708 \n" - "> \n" - "> \n" + "> This patch applies against linux-next and next-20150708=20\n" + ">=20\n" + ">=20\n" "> drivers/mfd/da9062-core.c | 11 +++++++++++\n" "> 1 file changed, 11 insertions(+)\n" "\n" @@ -48,40 +49,49 @@ "> index 4cf0643..b43cd24 100644\n" "> --- a/drivers/mfd/da9062-core.c\n" "> +++ b/drivers/mfd/da9062-core.c\n" - "> @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] = {\n" + "> @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] =3D {\n" "> \tDEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, \"WD_WARN\", IORESOURCE_IRQ),\n" "> };\n" - "> \n" - "> +static struct resource da9062_rtc_resources[] = {\n" + "> =20\n" + "> +static struct resource da9062_rtc_resources[] =3D {\n" "> +\tDEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, \"ALARM\", IORESOURCE_IRQ),\n" "> +\tDEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, \"TICK\", IORESOURCE_IRQ),\n" "> +};\n" "> +\n" - "> static const struct mfd_cell da9062_devs[] = {\n" + "> static const struct mfd_cell da9062_devs[] =3D {\n" "> \t{\n" - "> \t\t.name\t\t= \"da9062-core\",\n" - "> @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] = {\n" - "> \t\t.resources\t= da9062_thermal_resources,\n" - "> \t\t.of_compatible = \"dlg,da9062-thermal\",\n" + "> \t\t.name\t\t=3D \"da9062-core\",\n" + "> @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] =3D {\n" + "> \t\t.resources\t=3D da9062_thermal_resources,\n" + "> \t\t.of_compatible =3D \"dlg,da9062-thermal\",\n" "> \t},\n" "> +\t{\n" - "> +\t\t.name\t\t= \"da9062-rtc\",\n" - "> +\t\t.num_resources\t= ARRAY_SIZE(da9062_rtc_resources),\n" - "> +\t\t.resources\t= da9062_rtc_resources,\n" - "> +\t\t.of_compatible = \"dlg,da9062-rtc\",\n" + "> +\t\t.name\t\t=3D \"da9062-rtc\",\n" + "> +\t\t.num_resources\t=3D ARRAY_SIZE(da9062_rtc_resources),\n" + "> +\t\t.resources\t=3D da9062_rtc_resources,\n" + "> +\t\t.of_compatible =3D \"dlg,da9062-rtc\",\n" "> +\t},\n" "> };\n" - "> \n" + "> =20\n" "> static int da9062_clear_fault_log(struct da9062 *chip)\n" "\n" - "-- \n" + "--=20\n" "Lee Jones\n" "Linaro STMicroelectronics Landing Team Lead\n" - "Linaro.org \342\224\202 Open source software for ARM SoCs\n" + "Linaro.org =E2=94=82 Open source software for ARM SoCs\n" "Follow Linaro: Facebook | Twitter | Blog\n" - "--\n" - "To unsubscribe from this list: send the line \"unsubscribe linux-input\" in\n" - "the body of a message to majordomo@vger.kernel.org\n" - More majordomo info at http://vger.kernel.org/majordomo-info.html + "\n" + "--=20\n" + "--=20\n" + "You received this message because you are subscribed to \"rtc-linux\".\n" + "Membership options at http://groups.google.com/group/rtc-linux .\n" + "Please read http://groups.google.com/group/rtc-linux/web/checklist\n" + "before submitting a driver.\n" + "---=20\n" + "You received this message because you are subscribed to the Google Groups \"=\n" + "rtc-linux\" group.\n" + "To unsubscribe from this group and stop receiving emails from it, send an e=\n" + "mail to rtc-linux+unsubscribe@googlegroups.com.\n" + For more options, visit https://groups.google.com/d/optout. -e32884867ac653cc8a8299f7d99fc5cfaf96404338e1d15116af59be6f1b7de2 +2289c1e6e691ff0d3a21c3294533fc46437ca650f1e9b1f51638576ebda7feac
diff --git a/a/1.txt b/N2/1.txt index 1c633b2..a524871 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -57,7 +57,3 @@ Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog --- -To unsubscribe from this list: send the line "unsubscribe linux-input" in -the body of a message to majordomo@vger.kernel.org -More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/a/content_digest b/N2/content_digest index c9d3b00..ab90e65 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -78,10 +78,6 @@ "Lee Jones\n" "Linaro STMicroelectronics Landing Team Lead\n" "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 linux-input\" in\n" - "the body of a message to majordomo@vger.kernel.org\n" - More majordomo info at http://vger.kernel.org/majordomo-info.html + Follow Linaro: Facebook | Twitter | Blog -e32884867ac653cc8a8299f7d99fc5cfaf96404338e1d15116af59be6f1b7de2 +b72d429533b3dc6adc7718c7f716789af29bbde3d83983f03295860696c25656
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.