Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-26 Thread Simon Glass
Hi Heinrich, On Mon, Dec 18, 2023 at 3:02 PM Simon Glass wrote: > > Hi Heinrich, > > On Sat, 16 Dec 2023 at 14:02, Heinrich Schuchardt wrote: > > > > On 12/16/23 21:46, Simon Glass wrote: > > > Hi, > > > > > > On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: > > >> > > >> On Tue, Nov 21, 2023 at

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-18 Thread Simon Glass
Hi Heinrich, On Sat, 16 Dec 2023 at 14:02, Heinrich Schuchardt wrote: > > On 12/16/23 21:46, Simon Glass wrote: > > Hi, > > > > On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: > >> > >> On Tue, Nov 21, 2023 at 01:18:09PM +0100, Heinrich Schuchardt wrote: > >>> On 11/12/23 21:55, Simon Glass

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-16 Thread Heinrich Schuchardt
Am 16. Dezember 2023 23:14:20 MEZ schrieb Tom Rini : >On Sat, Dec 16, 2023 at 09:57:41PM +0100, Heinrich Schuchardt wrote: >> On 12/16/23 21:46, Simon Glass wrote: >> > Hi, >> > >> > On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: >> > > >> > > On Tue, Nov 21, 2023 at 01:18:09PM +0100,

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-16 Thread Tom Rini
On Sat, Dec 16, 2023 at 09:57:41PM +0100, Heinrich Schuchardt wrote: > On 12/16/23 21:46, Simon Glass wrote: > > Hi, > > > > On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: > > > > > > On Tue, Nov 21, 2023 at 01:18:09PM +0100, Heinrich Schuchardt wrote: > > > > On 11/12/23 21:55, Simon Glass

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-16 Thread Heinrich Schuchardt
On 12/16/23 21:46, Simon Glass wrote: Hi, On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: On Tue, Nov 21, 2023 at 01:18:09PM +0100, Heinrich Schuchardt wrote: On 11/12/23 21:55, Simon Glass wrote: This function is defined by bootstd so using it precludes using that feature. Use the

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-12-16 Thread Simon Glass
Hi, On Tue, 21 Nov 2023 at 06:21, Tom Rini wrote: > > On Tue, Nov 21, 2023 at 01:18:09PM +0100, Heinrich Schuchardt wrote: > > On 11/12/23 21:55, Simon Glass wrote: > > > This function is defined by bootstd so using it precludes using that > > > feature. Use the board_early_init_r() feature

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-11-21 Thread Tom Rini
On Tue, Nov 21, 2023 at 01:18:09PM +0100, Heinrich Schuchardt wrote: > On 11/12/23 21:55, Simon Glass wrote: > > This function is defined by bootstd so using it precludes using that > > feature. Use the board_early_init_r() feature instead. > > > > This requires moving quite a lot of code into

Re: [PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-11-21 Thread Heinrich Schuchardt
On 11/12/23 21:55, Simon Glass wrote: This function is defined by bootstd so using it precludes using that feature. Use the board_early_init_r() feature instead. This requires moving quite a lot of code into the board directory, butt this is the normal place for code called by

[PATCH v2 3/3] efi: Avoid using dm_scan_other()

2023-11-12 Thread Simon Glass
This function is defined by bootstd so using it precludes using that feature. Use the board_early_init_r() feature instead. This requires moving quite a lot of code into the board directory, butt this is the normal place for code called by board_early_init_r() Signed-off-by: Simon Glass ---