]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
phy: cadence-torrent: Use a common header file for Cadence SERDES
authorKishon Vijay Abraham I <kishon@ti.com>
Fri, 19 Mar 2021 12:41:23 +0000 (18:11 +0530)
committerVinod Koul <vkoul@kernel.org>
Wed, 31 Mar 2021 11:13:20 +0000 (16:43 +0530)
No functional change. In order to have a single header file for all
Cadence SERDES move phy-cadence-torrent.h to phy-cadence.h. This is
in preparation for adding Cadence Sierra SERDES specific macros.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Swapnil Jakhade <sjakhade@cadence.com>
Acked-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20210319124128.13308-9-kishon@ti.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Documentation/devicetree/bindings/phy/phy-cadence-torrent.yaml
drivers/phy/cadence/phy-cadence-torrent.c
include/dt-bindings/phy/phy-cadence.h [moved from include/dt-bindings/phy/phy-cadence-torrent.h with 51% similarity]

index 4608599a31d82dabcf5c5f5cc78bcafaf80c7420..01dcd14e7b2ad21248efdd588efcaf279d1fa54e 100644 (file)
@@ -184,7 +184,7 @@ examples:
     };
   - |
     #include <dt-bindings/phy/phy.h>
-    #include <dt-bindings/phy/phy-cadence-torrent.h>
+    #include <dt-bindings/phy/phy-cadence.h>
 
     bus {
         #address-cells = <2>;
index 95160da3e6670a08ef8da5b19b0a5c12221aee73..3fdab0d288c45b74061ec277d8a0ccc948b72105 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 #include <dt-bindings/phy/phy.h>
-#include <dt-bindings/phy/phy-cadence-torrent.h>
+#include <dt-bindings/phy/phy-cadence.h>
 #include <linux/clk.h>
 #include <linux/clk-provider.h>
 #include <linux/delay.h>
similarity index 51%
rename from include/dt-bindings/phy/phy-cadence-torrent.h
rename to include/dt-bindings/phy/phy-cadence.h
index 3c92c619249324178b44519565c9b0695b89339b..4a5ea52a856f1a9bb2703aa118563ddfd2554d60 100644 (file)
@@ -1,15 +1,16 @@
 /* SPDX-License-Identifier: GPL-2.0 */
 /*
- * This header provides constants for Cadence Torrent SERDES.
+ * This header provides constants for Cadence SERDES.
  */
 
-#ifndef _DT_BINDINGS_TORRENT_SERDES_H
-#define _DT_BINDINGS_TORRENT_SERDES_H
+#ifndef _DT_BINDINGS_CADENCE_SERDES_H
+#define _DT_BINDINGS_CADENCE_SERDES_H
 
+/* Torrent */
 #define TORRENT_SERDES_NO_SSC          0
 #define TORRENT_SERDES_EXTERNAL_SSC    1
 #define TORRENT_SERDES_INTERNAL_SSC    2
 
 #define CDNS_TORRENT_REFCLK_DRIVER      0
 
-#endif /* _DT_BINDINGS_TORRENT_SERDES_H */
+#endif /* _DT_BINDINGS_CADENCE_SERDES_H */