]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
OMAPDSS: HDMI: rename resource names
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 17 Dec 2013 12:41:14 +0000 (14:41 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Mon, 13 Jan 2014 10:19:54 +0000 (12:19 +0200)
The HDMI driver tries to get the needed memory resources by name and by
ID. Resources by name are not currently defined, and will be used with
DT boot.

The resource names used in the driver are not quite perfect, and as they
are not used yet, we can change them. This patch removes the unneeded
"hdmi_" prefix from the names, and simplifies the names (e.g. hdmi_txphy
-> phy).

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/hdmi4_core.c
drivers/video/omap2/dss/hdmi_phy.c
drivers/video/omap2/dss/hdmi_pll.c
drivers/video/omap2/dss/hdmi_wp.c

index 2386a3d9a2a21e3d6ecc030ca67b6a0b5a2b079b..2eb04dcf807cea1daf3f50a73fc7fb1af20a2d08 100644 (file)
@@ -1006,7 +1006,7 @@ int hdmi4_core_init(struct platform_device *pdev, struct hdmi_core_data *core)
        struct resource *res;
        struct resource temp_res;
 
-       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "hdmi_core");
+       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
        if (!res) {
                DSSDBG("can't get CORE mem resource by name\n");
                /*
index 45acb997ac0021336c6d72c74e9e53dd57409e55..dd376ce8da01960f376ca705cf25cde169e7699f 100644 (file)
@@ -124,7 +124,7 @@ int hdmi_phy_init(struct platform_device *pdev, struct hdmi_phy_data *phy)
        struct resource *res;
        struct resource temp_res;
 
-       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "hdmi_txphy");
+       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy");
        if (!res) {
                DSSDBG("can't get PHY mem resource by name\n");
                /*
index a06f4ee0b3a1fd3e8a8a5612d0c186d431b6e22c..5fc71215c3039349bc7f2fe0366597b3c137fa05 100644 (file)
@@ -202,7 +202,7 @@ int hdmi_pll_init(struct platform_device *pdev, struct hdmi_pll_data *pll)
        struct resource *res;
        struct resource temp_res;
 
-       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "hdmi_pllctrl");
+       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pll");
        if (!res) {
                DSSDBG("can't get PLL mem resource by name\n");
                /*
index 209a06ec9f0c2f9b9179f803015d05cf955ecf56..cd620c6e43a05ec8b9ca81a1f6566b2697166a00 100644 (file)
@@ -243,7 +243,7 @@ int hdmi_wp_init(struct platform_device *pdev, struct hdmi_wp_data *wp)
        struct resource *res;
        struct resource temp_res;
 
-       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "hdmi_wp");
+       res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "wp");
        if (!res) {
                DSSDBG("can't get WP mem resource by name\n");
                /*