Re: [PATCH 2/3] ASoC: mxs-saif: Drop redundant probe error messages
Daniel Baluta <[email protected]>
| Newsgroups | dev.linux.lists.imx,dev.linux.lists.sashiko-reviews |
|---|---|
| Message-ID | <[email protected]> |
On 8/12/26 14:28, Bui Duc Phuc wrote: >> [Severity: Low] >> Are we sure the underlying functions actually log these errors? >> >> Looking at devm_request_irq(), devm_snd_soc_register_component(), and >> mxs_pcm_platform_register(), they do not appear to print error messages when >> they fail, except in very specific edge cases. >> >> While the driver core will log a generic failure code on probe exit, does >> removing these specific error logs cause the driver to fail silently at these >> initialization steps, making it difficult to debug which step failed? >> > > I checked all error paths in the called functions, and they already > report the corresponding errors, > either directly or deeper in the call chain. > Therefore, removing the additional dev_err() calls does not make these > failures silent. Point here is not really that the error is not propagated up in the call chain but more like if you remove the error messages the user wont' really know exactly where the failure happened. Is there a tool that told you to fix these? How did you reached the conclusion that this patch is needed. thanks, Daniel.