diff for duplicates of <201203111746.09757.arnd@arndb.de> diff --git a/a/1.txt b/N1/1.txt index 49a6d8f..807e4e0 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -3,7 +3,7 @@ On Sunday 11 March 2012, Jamie Lentin wrote: > in the devicetree files, leave everything else in board-dt.c to be patched > later. > -> Signed-off-by: Jamie Lentin <jm@lentin.co.uk> +> Signed-off-by: Jamie Lentin <jm-Pj/HzkgeCk7QXOPxS62xeg@public.gmane.org> Great work! @@ -21,13 +21,13 @@ Great work! > + bootargs = "console=ttyS0,115200n8 earlyprintk"; > + }; > + -> + wdt at fed20300 { +> + wdt@fed20300 { > + compatible = "mrvl,orion-wdt"; > + reg = <0xfed20300 0x28>; > + clock-frequency = <166666667>; > + }; > + -> + serial at f1012000 { +> + serial@f1012000 { > + compatible = "ns16550a"; > + reg = <0xf1012000 0xff>; > + reg-shift = <2>; @@ -35,7 +35,7 @@ Great work! > + clock-frequency = <166666667>; > + }; > + -> + serial at f1012100 { +> + serial@f1012100 { > + compatible = "ns16550a"; > + reg = <0xf1012100 0xff>; > + reg-shift = <2>; @@ -56,13 +56,13 @@ I would also suggest to change the kirkwood.dtsi layout to put all the on-chip peripherals from the 0xf1 section into one bus in the device tree, like - ocp at f1000000 { + ocp@f1000000 { compatible = "simple-bus"; ranges = <0xf1000000 0xf1000000 0x1000000>; #address-cells = 1; #size-cells = 1; - serial at f1012000 { + serial@f1012000 { ... }; @@ -72,13 +72,13 @@ one bus in the device tree, like Or even use the ranges property to remap everything into a simpler address range: - ocp at f1000000 { + ocp@f1000000 { compatible = "simple-bus"; ranges = <0 0xf1000000 0x1000000>; #address-cells = 1; #size-cells = 1; - serial at 12000 { + serial@12000 { reg = <0x12000 0x100>; ... }; diff --git a/a/content_digest b/N1/content_digest index b2b3b15..118132e 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,9 +1,13 @@ "ref\01331476406-9844-1-git-send-email-jm@lentin.co.uk\0" "ref\01331476406-9844-2-git-send-email-jm@lentin.co.uk\0" - "From\0arnd@arndb.de (Arnd Bergmann)\0" - "Subject\0[PATCH 1/2] ARM: kirkwood: Basic support for DNS-320 and DNS-325\0" + "ref\01331476406-9844-2-git-send-email-jm-Pj/HzkgeCk7QXOPxS62xeg@public.gmane.org\0" + "From\0Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>\0" + "Subject\0Re: [PATCH 1/2] ARM: kirkwood: Basic support for DNS-320 and DNS-325\0" "Date\0Sun, 11 Mar 2012 17:46:09 +0000\0" - "To\0linux-arm-kernel@lists.infradead.org\0" + "To\0Jamie Lentin <jm-Pj/HzkgeCk7QXOPxS62xeg@public.gmane.org>\0" + "Cc\0devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org" + Jason <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org> + " linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org\0" "\00:1\0" "b\0" "On Sunday 11 March 2012, Jamie Lentin wrote:\n" @@ -11,7 +15,7 @@ "> in the devicetree files, leave everything else in board-dt.c to be patched\n" "> later.\n" "> \n" - "> Signed-off-by: Jamie Lentin <jm@lentin.co.uk>\n" + "> Signed-off-by: Jamie Lentin <jm-Pj/HzkgeCk7QXOPxS62xeg@public.gmane.org>\n" "\n" "Great work!\n" "\n" @@ -29,13 +33,13 @@ "> +\t\tbootargs = \"console=ttyS0,115200n8 earlyprintk\";\n" "> +\t};\n" "> +\n" - "> +\twdt at fed20300 {\n" + "> +\twdt@fed20300 {\n" "> +\t\tcompatible = \"mrvl,orion-wdt\";\n" "> +\t\treg = <0xfed20300 0x28>;\n" "> +\t\tclock-frequency = <166666667>;\n" "> +\t};\n" "> +\n" - "> +\tserial at f1012000 {\n" + "> +\tserial@f1012000 {\n" "> +\t\tcompatible = \"ns16550a\";\n" "> +\t\treg = <0xf1012000 0xff>;\n" "> +\t\treg-shift = <2>;\n" @@ -43,7 +47,7 @@ "> +\t\tclock-frequency = <166666667>;\n" "> +\t};\n" "> +\n" - "> +\tserial at f1012100 {\n" + "> +\tserial@f1012100 {\n" "> +\t\tcompatible = \"ns16550a\";\n" "> +\t\treg = <0xf1012100 0xff>;\n" "> +\t\treg-shift = <2>;\n" @@ -64,13 +68,13 @@ "put all the on-chip peripherals from the 0xf1 section into\n" "one bus in the device tree, like\n" "\n" - "\tocp at f1000000 {\n" + "\tocp@f1000000 {\n" "\t\tcompatible = \"simple-bus\";\n" "\t\tranges = <0xf1000000 0xf1000000 0x1000000>;\n" "\t\t#address-cells = 1;\n" "\t\t#size-cells = 1;\n" "\n" - "\t\tserial at f1012000 {\n" + "\t\tserial@f1012000 {\n" "\t\t\t...\n" "\t\t};\n" "\n" @@ -80,13 +84,13 @@ "Or even use the ranges property to remap everything into\n" "a simpler address range:\n" "\n" - "\tocp at f1000000 {\n" + "\tocp@f1000000 {\n" "\t\tcompatible = \"simple-bus\";\n" "\t\tranges = <0 0xf1000000 0x1000000>;\n" "\t\t#address-cells = 1;\n" "\t\t#size-cells = 1;\n" "\n" - "\t\tserial at 12000 {\n" + "\t\tserial@12000 {\n" "\t\t\treg = <0x12000 0x100>;\n" "\t\t\t...\n" "\t\t};\n" @@ -97,4 +101,4 @@ "\n" "\tArnd" -0a111850b05c3d3576ee317ea842b5847fff62ae16c0db8bc922df027b91076c +edca361ea7d693b526da42acd95d2976f5bcfc3ee5482b2688c45f664c6f4b58
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.