Re: [PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-19 Thread Tom Rini
On Thu, Oct 19, 2023 at 07:59:29AM -0600, Simon Glass wrote: > Hi Tom, > > On Wed, 18 Oct 2023 at 06:39, Tom Rini wrote: > > > > On Tue, Oct 17, 2023 at 09:31:04PM -0600, Simon Glass wrote: > > > Hi Tom, > > > > > > On Tue, 17 Oct 2023 at 08:02, Tom Rini wrote: > > > > > > > > On Mon, Oct 16, 20

Re: [PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-19 Thread Simon Glass
Hi Tom, On Wed, 18 Oct 2023 at 06:39, Tom Rini wrote: > > On Tue, Oct 17, 2023 at 09:31:04PM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Tue, 17 Oct 2023 at 08:02, Tom Rini wrote: > > > > > > On Mon, Oct 16, 2023 at 04:28:05PM -0600, Simon Glass wrote: > > > > > > > There are two cleanup fu

Re: [PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-18 Thread Tom Rini
On Tue, Oct 17, 2023 at 09:31:04PM -0600, Simon Glass wrote: > Hi Tom, > > On Tue, 17 Oct 2023 at 08:02, Tom Rini wrote: > > > > On Mon, Oct 16, 2023 at 04:28:05PM -0600, Simon Glass wrote: > > > > > There are two cleanup functions needed during boot which depend on > > > CMD_BOOTM: bootm_disable

Re: [PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-17 Thread Simon Glass
Hi Tom, On Tue, 17 Oct 2023 at 08:02, Tom Rini wrote: > > On Mon, Oct 16, 2023 at 04:28:05PM -0600, Simon Glass wrote: > > > There are two cleanup functions needed during boot which depend on > > CMD_BOOTM: bootm_disable_interrupts() and board_quiesce_devices() > > > > Provide static inline versi

Re: [PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-17 Thread Tom Rini
On Mon, Oct 16, 2023 at 04:28:05PM -0600, Simon Glass wrote: > There are two cleanup functions needed during boot which depend on > CMD_BOOTM: bootm_disable_interrupts() and board_quiesce_devices() > > Provide static inline versions of these for when commands are not > enabled. > > Signed-off-by

[PATCH v3 14/32] bootm: Allow building when cleanup functions are missing

2023-10-16 Thread Simon Glass
There are two cleanup functions needed during boot which depend on CMD_BOOTM: bootm_disable_interrupts() and board_quiesce_devices() Provide static inline versions of these for when commands are not enabled. Signed-off-by: Simon Glass --- (no changes since v1) arch/arm/lib/bootm.c | 2 ++ bo