Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clocksource: clps711x: Changing the compatibility string to match with the smallest supported chip

This patch changes the compatibility string to match with the smallest
supported chip (EP7209). Since the DT-support for this CPU is not yet
announced, this change is safe.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Alexander Shiyan and committed by
Arnd Bergmann
d64c0105 893b7798

+4 -4
+3 -3
Documentation/devicetree/bindings/timer/cirrus,clps711x-timer.txt
··· 1 1 * Cirrus Logic CLPS711X Timer Counter 2 2 3 3 Required properties: 4 - - compatible: Shall contain "cirrus,clps711x-timer". 4 + - compatible: Shall contain "cirrus,ep7209-timer". 5 5 - reg : Address and length of the register set. 6 6 - interrupts: The interrupt number of the timer. 7 7 - clocks : phandle of timer reference clock. ··· 15 15 }; 16 16 17 17 timer1: timer@80000300 { 18 - compatible = "cirrus,ep7312-timer", "cirrus,clps711x-timer"; 18 + compatible = "cirrus,ep7312-timer", "cirrus,ep7209-timer"; 19 19 reg = <0x80000300 0x4>; 20 20 interrupts = <8>; 21 21 clocks = <&clks 5>; 22 22 }; 23 23 24 24 timer2: timer@80000340 { 25 - compatible = "cirrus,ep7312-timer", "cirrus,clps711x-timer"; 25 + compatible = "cirrus,ep7312-timer", "cirrus,ep7209-timer"; 26 26 reg = <0x80000340 0x4>; 27 27 interrupts = <9>; 28 28 clocks = <&clks 6>;
+1 -1
drivers/clocksource/clps711x-timer.c
··· 121 121 break; 122 122 } 123 123 } 124 - CLOCKSOURCE_OF_DECLARE(clps711x, "cirrus,clps711x-timer", clps711x_timer_init); 124 + CLOCKSOURCE_OF_DECLARE(clps711x, "cirrus,ep7209-timer", clps711x_timer_init); 125 125 #endif