mirror of https://gitee.com/openkylin/linux.git
ARM: dts: qcom-msm8974: use named constant for interrupt type GIC_PPI
Cosmetic change of integer value "1" in the first field of the "interrupts" property to the correct named constant. Signed-off-by: Frank Rowand <frank.rowand@sony.com> Signed-off-by: Andy Gross <andy.gross@linaro.org>
This commit is contained in:
parent
5b394b2ddf
commit
b0a627b409
|
@ -67,7 +67,7 @@ rmtfs@fd80000 {
|
|||
cpus {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
interrupts = <1 9 0xf04>;
|
||||
interrupts = <GIC_PPI 9 0xf04>;
|
||||
|
||||
CPU0: cpu@0 {
|
||||
compatible = "qcom,krait";
|
||||
|
@ -214,7 +214,7 @@ cpu_crit3: trip1 {
|
|||
|
||||
cpu-pmu {
|
||||
compatible = "qcom,krait-pmu";
|
||||
interrupts = <1 7 0xf04>;
|
||||
interrupts = <GIC_PPI 7 0xf04>;
|
||||
};
|
||||
|
||||
clocks {
|
||||
|
@ -233,10 +233,10 @@ sleep_clk: sleep_clk {
|
|||
|
||||
timer {
|
||||
compatible = "arm,armv7-timer";
|
||||
interrupts = <1 2 0xf08>,
|
||||
<1 3 0xf08>,
|
||||
<1 4 0xf08>,
|
||||
<1 1 0xf08>;
|
||||
interrupts = <GIC_PPI 2 0xf08>,
|
||||
<GIC_PPI 3 0xf08>,
|
||||
<GIC_PPI 4 0xf08>,
|
||||
<GIC_PPI 1 0xf08>;
|
||||
clock-frequency = <19200000>;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue