Message ID | 20210310154558.32078-9-kishon@ti.com |
---|---|
State | New |
Headers | show |
Series | PHY: Add support in Sierra to use external clock | expand |
> -----Original Message----- > From: Kishon Vijay Abraham I <kishon@ti.com> > Sent: Wednesday, March 10, 2021 9:16 PM > To: Kishon Vijay Abraham I <kishon@ti.com>; Vinod Koul > <vkoul@kernel.org>; Rob Herring <robh+dt@kernel.org>; Philipp Zabel > <p.zabel@pengutronix.de>; Swapnil Kashinath Jakhade > <sjakhade@cadence.com> > Cc: linux-kernel@vger.kernel.org; devicetree@vger.kernel.org; Lokesh Vutla > <lokeshvutla@ti.com> > Subject: [PATCH v6 08/13] phy: cadence-torrent: Use a common header file > for Cadence SERDES > > EXTERNAL MAIL > > > 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> > --- > drivers/phy/cadence/phy-cadence-torrent.c | 2 +- > .../phy/{phy-cadence-torrent.h => phy-cadence.h} | 9 +++++---- > 2 files changed, 6 insertions(+), 5 deletions(-) > rename include/dt-bindings/phy/{phy-cadence-torrent.h => phy-cadence.h} > (51%) > Reviewed-by: Swapnil Jakhade <sjakhade@cadence.com> Thanks & regards, Swapnil > diff --git a/drivers/phy/cadence/phy-cadence-torrent.c > b/drivers/phy/cadence/phy-cadence-torrent.c > index 95160da3e667..3fdab0d288c4 100644 > --- a/drivers/phy/cadence/phy-cadence-torrent.c > +++ b/drivers/phy/cadence/phy-cadence-torrent.c > @@ -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> > diff --git a/include/dt-bindings/phy/phy-cadence-torrent.h b/include/dt- > bindings/phy/phy-cadence.h > similarity index 51% > rename from include/dt-bindings/phy/phy-cadence-torrent.h > rename to include/dt-bindings/phy/phy-cadence.h > index 3c92c6192493..4a5ea52a856f 100644 > --- a/include/dt-bindings/phy/phy-cadence-torrent.h > +++ b/include/dt-bindings/phy/phy-cadence.h > @@ -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 */ > -- > 2.17.1
diff --git a/drivers/phy/cadence/phy-cadence-torrent.c b/drivers/phy/cadence/phy-cadence-torrent.c index 95160da3e667..3fdab0d288c4 100644 --- a/drivers/phy/cadence/phy-cadence-torrent.c +++ b/drivers/phy/cadence/phy-cadence-torrent.c @@ -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> diff --git a/include/dt-bindings/phy/phy-cadence-torrent.h b/include/dt-bindings/phy/phy-cadence.h similarity index 51% rename from include/dt-bindings/phy/phy-cadence-torrent.h rename to include/dt-bindings/phy/phy-cadence.h index 3c92c6192493..4a5ea52a856f 100644 --- a/include/dt-bindings/phy/phy-cadence-torrent.h +++ b/include/dt-bindings/phy/phy-cadence.h @@ -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 */
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> --- drivers/phy/cadence/phy-cadence-torrent.c | 2 +- .../phy/{phy-cadence-torrent.h => phy-cadence.h} | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) rename include/dt-bindings/phy/{phy-cadence-torrent.h => phy-cadence.h} (51%) -- 2.17.1