Re: [PATCH v3 06/15] mmc: Use logging instead of printf()

2024-08-13 Thread Simon Glass
Hi Quentin, On Mon, 12 Aug 2024 at 03:35, Quentin Schulz wrote: > > Hi Simon, > > On 8/11/24 2:29 PM, Simon Glass wrote: > > The code makes quite a few uses of __func__ which puts the function > > name into the resulting SPL image. Use the log subsystem instead, to > > reduce size. > > > > The CO

Re: [PATCH v3 06/15] mmc: Use logging instead of printf()

2024-08-12 Thread Quentin Schulz
Hi Simon, On 8/11/24 2:29 PM, Simon Glass wrote: The code makes quite a few uses of __func__ which puts the function name into the resulting SPL image. Use the log subsystem instead, to reduce size. The CONFIG_LOGF_FUNC option can be used to enable the function name. Signed-off-by: Simon Glass

[PATCH v3 06/15] mmc: Use logging instead of printf()

2024-08-11 Thread Simon Glass
The code makes quite a few uses of __func__ which puts the function name into the resulting SPL image. Use the log subsystem instead, to reduce size. The CONFIG_LOGF_FUNC option can be used to enable the function name. Signed-off-by: Simon Glass --- Changes in v3: - Keep hex prefix on values wh