Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 34b0f151 authored by Kumar Gala's avatar Kumar Gala
Browse files

msm: Change vendor name from 'qcom' to 'qti' for mpm_counter



As we have recently moved to use 'qti' as vendor name reflect
that change for all mpm_counter related code.

Change-Id: I1360e42a53136fe99cd7961e519599a64d4326f9
Signed-off-by: default avatarKumar Gala <galak@codeaurora.org>
parent 0023b20a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@ driver provides an api to get this value.

The required nodes for the MPM timetick counter driver are:

- compatible: "qcom,mpm2-sleep-counter"
- compatible: "qti,mpm2-sleep-counter"
- reg: Specifies the physical address of the timetick count register.
- clock-frequency: the physical counter frequency.

Example:
	qcom,mpm2-sleep-counter@fc4a3000 {
		compatible = "qcom,mpm2-sleep-counter";
	qti,mpm2-sleep-counter@fc4a3000 {
		compatible = "qti,mpm2-sleep-counter";
		reg = <0xfc4a3000 0x1000>;
		clock-frequency = <32768>;
	};
+2 −2
Original line number Diff line number Diff line
@@ -98,8 +98,8 @@
		qcom,direct-connect-irqs = <8>;
	};

	qcom,mpm2-sleep-counter@fc4a3000 {
		compatible = "qcom,mpm2-sleep-counter";
	qti,mpm2-sleep-counter@fc4a3000 {
		compatible = "qti,mpm2-sleep-counter";
		reg = <0xfc4a3000 0x1000>;
		clock-frequency = <32768>;
	};
+2 −2
Original line number Diff line number Diff line
@@ -88,8 +88,8 @@
		interrupt-names = "cdc-int";
	};

	qcom,mpm2-sleep-counter@fc4a3000 {
		compatible = "qcom,mpm2-sleep-counter";
	qti,mpm2-sleep-counter@fc4a3000 {
		compatible = "qti,mpm2-sleep-counter";
		reg = <0xfc4a3000 0x1000>;
		clock-frequency = <32768>;
	};
+2 −2
Original line number Diff line number Diff line
@@ -256,8 +256,8 @@
	};


	qcom,mpm2-sleep-counter@fc4a3000 {
		compatible = "qcom,mpm2-sleep-counter";
	qti,mpm2-sleep-counter@fc4a3000 {
		compatible = "qti,mpm2-sleep-counter";
		reg = <0xfc4a3000 0x1000>;
		clock-frequency = <32768>;
	};
+2 −2
Original line number Diff line number Diff line
@@ -61,8 +61,8 @@
		qcom,direct-connect-irqs = <8>;
	};

	qcom,mpm2-sleep-counter@fc4a3000 {
		compatible = "qcom,mpm2-sleep-counter";
	qti,mpm2-sleep-counter@fc4a3000 {
		compatible = "qti,mpm2-sleep-counter";
		reg = <0xfc4a3000 0x1000>;
		clock-frequency = <32768>;
	};
Loading