Merge tag 'imx-fixes-3.8' of git://git.linaro.org/people/shawnguo/linux-2.6 into fixes
From Shawn Guo: It includes one critical fix - wrong flexcan2 clock will hang system when the port gets brought up. The other two are non-critical fixes, which are sent together here, since it's still early -rc stage. * tag 'imx-fixes-3.8' of git://git.linaro.org/people/shawnguo/linux-2.6: ARM: mx5: Fix MX53 flexcan2 clock ARM: dts: imx31-bug: Fix manufacturer compatible string clk: imx: Remove 'clock-output-names' from the examples
This commit is contained in:
@@ -60,11 +60,6 @@ clks: clkctrl@80040000 {
|
|||||||
compatible = "fsl,imx23-clkctrl";
|
compatible = "fsl,imx23-clkctrl";
|
||||||
reg = <0x80040000 0x2000>;
|
reg = <0x80040000 0x2000>;
|
||||||
#clock-cells = <1>;
|
#clock-cells = <1>;
|
||||||
clock-output-names =
|
|
||||||
...
|
|
||||||
"uart", /* 32 */
|
|
||||||
...
|
|
||||||
"end_of_list";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
auart0: serial@8006c000 {
|
auart0: serial@8006c000 {
|
||||||
|
@@ -146,10 +146,6 @@ clks: ccm@53f80000 {
|
|||||||
compatible = "fsl,imx25-ccm";
|
compatible = "fsl,imx25-ccm";
|
||||||
reg = <0x53f80000 0x4000>;
|
reg = <0x53f80000 0x4000>;
|
||||||
interrupts = <31>;
|
interrupts = <31>;
|
||||||
clock-output-names = ...
|
|
||||||
"uart_ipg",
|
|
||||||
"uart_serial",
|
|
||||||
...;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
uart1: serial@43f90000 {
|
uart1: serial@43f90000 {
|
||||||
|
@@ -83,11 +83,6 @@ clks: clkctrl@80040000 {
|
|||||||
compatible = "fsl,imx28-clkctrl";
|
compatible = "fsl,imx28-clkctrl";
|
||||||
reg = <0x80040000 0x2000>;
|
reg = <0x80040000 0x2000>;
|
||||||
#clock-cells = <1>;
|
#clock-cells = <1>;
|
||||||
clock-output-names =
|
|
||||||
...
|
|
||||||
"uart", /* 45 */
|
|
||||||
...
|
|
||||||
"end_of_list";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
auart0: serial@8006a000 {
|
auart0: serial@8006a000 {
|
||||||
|
@@ -211,10 +211,6 @@ clks: ccm@020c4000 {
|
|||||||
reg = <0x020c4000 0x4000>;
|
reg = <0x020c4000 0x4000>;
|
||||||
interrupts = <0 87 0x04 0 88 0x04>;
|
interrupts = <0 87 0x04 0 88 0x04>;
|
||||||
#clock-cells = <1>;
|
#clock-cells = <1>;
|
||||||
clock-output-names = ...
|
|
||||||
"uart_ipg",
|
|
||||||
"uart_serial",
|
|
||||||
...;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
uart1: serial@02020000 {
|
uart1: serial@02020000 {
|
||||||
|
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "Buglabs i.MX31 Bug 1.x";
|
model = "Buglabs i.MX31 Bug 1.x";
|
||||||
compatible = "fsl,imx31-bug", "fsl,imx31";
|
compatible = "buglabs,imx31-bug", "fsl,imx31";
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
reg = <0x80000000 0x8000000>; /* 128M */
|
reg = <0x80000000 0x8000000>; /* 128M */
|
||||||
|
@@ -492,7 +492,7 @@
|
|||||||
compatible = "fsl,imx53-flexcan", "fsl,p1010-flexcan";
|
compatible = "fsl,imx53-flexcan", "fsl,p1010-flexcan";
|
||||||
reg = <0x53fcc000 0x4000>;
|
reg = <0x53fcc000 0x4000>;
|
||||||
interrupts = <83>;
|
interrupts = <83>;
|
||||||
clocks = <&clks 158>, <&clks 157>;
|
clocks = <&clks 87>, <&clks 86>;
|
||||||
clock-names = "ipg", "per";
|
clock-names = "ipg", "per";
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user