Re: [PATCH] phy: intel: Eliminate unnecessary assignment in intel_cbphy_set_mode

2020-06-24 Thread Vinod Koul
On 15-06-20, 17:30, Nathan Chancellor wrote: > On Fri, May 22, 2020 at 08:50:43PM -0700, Nathan Chancellor wrote: > > Clang warns: > > > > drivers/phy/intel/phy-intel-combo.c:202:34: warning: implicit conversion > > from enumeration type 'enum intel_phy_mode' to different enumeration > > type

Re: [PATCH] phy: intel: Eliminate unnecessary assignment in intel_cbphy_set_mode

2020-06-15 Thread Nathan Chancellor
On Fri, May 22, 2020 at 08:50:43PM -0700, Nathan Chancellor wrote: > Clang warns: > > drivers/phy/intel/phy-intel-combo.c:202:34: warning: implicit conversion > from enumeration type 'enum intel_phy_mode' to different enumeration > type 'enum intel_combo_mode' [-Wenum-conversion] > enum

Re: [PATCH] phy: intel: Eliminate unnecessary assignment in intel_cbphy_set_mode

2020-05-26 Thread Nathan Chancellor
On Tue, May 26, 2020 at 11:12:58AM -0700, Nick Desaulniers wrote: > On Fri, May 22, 2020 at 8:51 PM Nathan Chancellor > wrote: > > > > Clang warns: > > > > drivers/phy/intel/phy-intel-combo.c:202:34: warning: implicit conversion > > from enumeration type 'enum intel_phy_mode' to different

Re: [PATCH] phy: intel: Eliminate unnecessary assignment in intel_cbphy_set_mode

2020-05-26 Thread Nick Desaulniers
On Fri, May 22, 2020 at 8:51 PM Nathan Chancellor wrote: > > Clang warns: > > drivers/phy/intel/phy-intel-combo.c:202:34: warning: implicit conversion > from enumeration type 'enum intel_phy_mode' to different enumeration > type 'enum intel_combo_mode' [-Wenum-conversion] > enum

[PATCH] phy: intel: Eliminate unnecessary assignment in intel_cbphy_set_mode

2020-05-22 Thread Nathan Chancellor
Clang warns: drivers/phy/intel/phy-intel-combo.c:202:34: warning: implicit conversion from enumeration type 'enum intel_phy_mode' to different enumeration type 'enum intel_combo_mode' [-Wenum-conversion] enum intel_combo_mode cb_mode = PHY_PCIE_MODE; ~~~