]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
clk: qcom: Always add factor clock for xo clocks
authorGeorgi Djakov <georgi.djakov@linaro.org>
Wed, 2 Nov 2016 15:56:58 +0000 (17:56 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Fri, 11 Nov 2016 00:36:19 +0000 (16:36 -0800)
Currently the RPM/RPM-SMD clock drivers do not register the xo clocks,
so we should always add factor clock. When we later add xo clocks support
into the drivers, we should update this function to skip registration.
By doing so we avoid any DT dependencies.

Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/qcom/common.c

index fffcbaf0fba74b3fad90ea48c25761aa7873ab43..27566a0098cac0854c1a739fba961103bf099e16 100644 (file)
@@ -153,15 +153,12 @@ int qcom_cc_register_board_clk(struct device *dev, const char *path,
                               const char *name, unsigned long rate)
 {
        bool add_factor = true;
-       struct device_node *node;
-
-       /* The RPM clock driver will add the factor clock if present */
-       if (IS_ENABLED(CONFIG_QCOM_RPMCC)) {
-               node = of_find_compatible_node(NULL, NULL, "qcom,rpmcc");
-               if (of_device_is_available(node))
-                       add_factor = false;
-               of_node_put(node);
-       }
+
+       /*
+        * TODO: The RPM clock driver currently does not support the xo clock.
+        * When xo is added to the RPM clock driver, we should change this
+        * function to skip registration of xo factor clocks.
+        */
 
        return _qcom_cc_register_board_clk(dev, path, name, rate, add_factor);
 }