Re: [PATCH 2/3] arm: mvebu: Espressobin: move network setup into a separate function

2023-10-20 Thread Robert Marko
On Fri, Oct 20, 2023 at 8:46 AM Stefan Roese wrote: > > Hi Robert, > > On 9/18/23 08:47, Stefan Roese wrote: > > On 9/14/23 12:16, Robert Marko wrote: > >> Currently, Esspresobin switch is being setup directly in > >> last_stage_init() > >> which makes it hard to add support for any other board to

Re: [PATCH 2/3] arm: mvebu: Espressobin: move network setup into a separate function

2023-10-19 Thread Stefan Roese
Hi Robert, On 9/18/23 08:47, Stefan Roese wrote: On 9/14/23 12:16, Robert Marko wrote: Currently, Esspresobin switch is being setup directly in last_stage_init() which makes it hard to add support for any other board to be setup. So, lets just move the switch setup code to a separate function

Re: [PATCH 2/3] arm: mvebu: Espressobin: move network setup into a separate function

2023-09-17 Thread Stefan Roese
On 9/14/23 12:16, Robert Marko wrote: Currently, Esspresobin switch is being setup directly in last_stage_init() which makes it hard to add support for any other board to be setup. So, lets just move the switch setup code to a separate function and call it if compatible matches, there should be

[PATCH 2/3] arm: mvebu: Espressobin: move network setup into a separate function

2023-09-14 Thread Robert Marko
Currently, Esspresobin switch is being setup directly in last_stage_init() which makes it hard to add support for any other board to be setup. So, lets just move the switch setup code to a separate function and call it if compatible matches, there should be no functional change. Signed-off-by: Ro