Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2023-01-12 Thread Tom Rini
On Thu, Dec 29, 2022 at 11:53:00AM -0500, Sean Anderson wrote: > In order to read the firmware from the filesystem, we need a file name. > Read the firmware name from the device tree, using the firmware-name > property. This property is commonly used in Linux to determine the > correct name to use

Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-30 Thread Simon Glass
Hi Sean, On Fri, 30 Dec 2022 at 11:53, Sean Anderson wrote: > > On 12/30/22 12:51, Simon Glass wrote: > > Hi Sean, > > > > On Fri, 30 Dec 2022 at 09:32, Sean Anderson wrote: > >> > >> On 12/29/22 17:38, Simon Glass wrote: > >> > Hi Sean, > >> > > >> > On Thu, 29 Dec 2022 at 10:53, Sean Anderson

Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-30 Thread Sean Anderson
On 12/30/22 12:51, Simon Glass wrote: > Hi Sean, > > On Fri, 30 Dec 2022 at 09:32, Sean Anderson wrote: >> >> On 12/29/22 17:38, Simon Glass wrote: >> > Hi Sean, >> > >> > On Thu, 29 Dec 2022 at 10:53, Sean Anderson wrote: >> >> >> >> In order to read the firmware from the filesystem, we need a

Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-30 Thread Simon Glass
Hi Sean, On Fri, 30 Dec 2022 at 09:32, Sean Anderson wrote: > > On 12/29/22 17:38, Simon Glass wrote: > > Hi Sean, > > > > On Thu, 29 Dec 2022 at 10:53, Sean Anderson wrote: > >> > >> In order to read the firmware from the filesystem, we need a file name. > >> Read the firmware name from the dev

Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-30 Thread Sean Anderson
On 12/29/22 17:38, Simon Glass wrote: > Hi Sean, > > On Thu, 29 Dec 2022 at 10:53, Sean Anderson wrote: >> >> In order to read the firmware from the filesystem, we need a file name. >> Read the firmware name from the device tree, using the firmware-name >> property. This property is commonly used

Re: [PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-29 Thread Simon Glass
Hi Sean, On Thu, 29 Dec 2022 at 10:53, Sean Anderson wrote: > > In order to read the firmware from the filesystem, we need a file name. > Read the firmware name from the device tree, using the firmware-name > property. This property is commonly used in Linux to determine the > correct name to use

[PATCH v3 2/3] net: fm: Add firmware name parameter

2022-12-29 Thread Sean Anderson
In order to read the firmware from the filesystem, we need a file name. Read the firmware name from the device tree, using the firmware-name property. This property is commonly used in Linux to determine the correct name to use (and can be seen in several device trees in U-Boot). Signed-off-by: Se