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.

video: clps711x-fb: 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>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

authored by

Alexander Shiyan and committed by
Arnd Bergmann
564c9741 e7c38f22

+4 -4
+2 -2
Documentation/devicetree/bindings/display/cirrus,clps711x-fb.txt
··· 1 1 * Currus Logic CLPS711X Framebuffer 2 2 3 3 Required properties: 4 - - compatible: Shall contain "cirrus,clps711x-fb". 4 + - compatible: Shall contain "cirrus,ep7209-fb". 5 5 - reg : Physical base address and length of the controller's registers + 6 6 location and size of the framebuffer memory. 7 7 - clocks : phandle + clock specifier pair of the FB reference clock. ··· 18 18 19 19 Example: 20 20 fb: fb@800002c0 { 21 - compatible = "cirrus,ep7312-fb", "cirrus,clps711x-fb"; 21 + compatible = "cirrus,ep7312-fb", "cirrus,ep7209-fb"; 22 22 reg = <0x800002c0 0xd44>, <0x60000000 0xc000>; 23 23 clocks = <&clks 2>; 24 24 lcd-supply = <&reg5v0>;
+2 -2
drivers/video/fbdev/clps711x-fb.c
··· 273 273 } 274 274 275 275 cfb->syscon = 276 - syscon_regmap_lookup_by_compatible("cirrus,clps711x-syscon1"); 276 + syscon_regmap_lookup_by_compatible("cirrus,ep7209-syscon1"); 277 277 if (IS_ERR(cfb->syscon)) { 278 278 ret = PTR_ERR(cfb->syscon); 279 279 goto out_fb_release; ··· 376 376 } 377 377 378 378 static const struct of_device_id clps711x_fb_dt_ids[] = { 379 - { .compatible = "cirrus,clps711x-fb", }, 379 + { .compatible = "cirrus,ep7209-fb", }, 380 380 { } 381 381 }; 382 382 MODULE_DEVICE_TABLE(of, clps711x_fb_dt_ids);