Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2024-03-05 Thread Stefan Roese
On 12/6/23 15:35, Marek Mojík wrote: The mv88e6xxx driver does not currently initialize the smi_addr field, but instead keeps the default zero value. This leads to driver being unusable on devices where the switch is not on address zero of the mdio bus. Fix this problem by reading the SMI address

Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2024-03-05 Thread Stefan Roese
Hi Marek, On 3/4/24 15:48, Marek Behún wrote: Hi Stefan, On Wed, 14 Feb 2024 08:50:16 +0100 Stefan Roese wrote: Hi Ramon, On 1/9/24 10:37, Stefan Roese wrote: On 12/18/23 17:09, Marek Behún wrote: On Wed, 6 Dec 2023 15:35:56 +0100 Marek Mojík wrote: The mv88e6xxx driver does not curr

Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2024-03-04 Thread Marek Behún
Hi Stefan, On Wed, 14 Feb 2024 08:50:16 +0100 Stefan Roese wrote: > Hi Ramon, > > On 1/9/24 10:37, Stefan Roese wrote: > > On 12/18/23 17:09, Marek Behún wrote: > >> On Wed, 6 Dec 2023 15:35:56 +0100 > >> Marek Mojík wrote: > >> > >>> The mv88e6xxx driver does not currently initialize the

Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2024-02-13 Thread Stefan Roese
Hi Ramon, On 1/9/24 10:37, Stefan Roese wrote: On 12/18/23 17:09, Marek Behún wrote: On Wed, 6 Dec 2023 15:35:56 +0100 Marek Mojík wrote: The mv88e6xxx driver does not currently initialize the smi_addr field, but instead keeps the default zero value. This leads to driver being unusable on

Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2024-01-09 Thread Stefan Roese
On 12/18/23 17:09, Marek Behún wrote: On Wed, 6 Dec 2023 15:35:56 +0100 Marek Mojík wrote: The mv88e6xxx driver does not currently initialize the smi_addr field, but instead keeps the default zero value. This leads to driver being unusable on devices where the switch is not on address zero of

Re: [PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2023-12-18 Thread Marek Behún
On Wed, 6 Dec 2023 15:35:56 +0100 Marek Mojík wrote: > The mv88e6xxx driver does not currently initialize the smi_addr field, but > instead keeps the default zero value. This leads to driver being unusable > on devices where the switch is not on address zero of the mdio bus. Fix > this problem by

[PATCH v2] net: mv88e6xxx: fix missing SMI address initialization

2023-12-06 Thread Marek Mojík
The mv88e6xxx driver does not currently initialize the smi_addr field, but instead keeps the default zero value. This leads to driver being unusable on devices where the switch is not on address zero of the mdio bus. Fix this problem by reading the SMI address from device tree. Signed-off-by: Mare