Re: [PATCH 3/4] dm: avoid NULL dereference in lists_bind_fdt()

2022-07-26 Thread Simon Glass
On Mon, 11 Jul 2022 at 00:21, Heinrich Schuchardt wrote: > > If parameter drv of lists_bind_fdt() is specified, we want to bind to this > specific driver even if its field of_match is NULL. > > If entry->of_match is NULL, we should not dereference it in a debug > statement. > > Fixes: d3e773613b6d

Re: [PATCH 3/4] dm: avoid NULL dereference in lists_bind_fdt()

2022-07-12 Thread Simon Glass
On Mon, 11 Jul 2022 at 00:21, Heinrich Schuchardt wrote: > > If parameter drv of lists_bind_fdt() is specified, we want to bind to this > specific driver even if its field of_match is NULL. > > If entry->of_match is NULL, we should not dereference it in a debug > statement. > > Fixes: d3e773613b6d

[PATCH 3/4] dm: avoid NULL dereference in lists_bind_fdt()

2022-07-10 Thread Heinrich Schuchardt
If parameter drv of lists_bind_fdt() is specified, we want to bind to this specific driver even if its field of_match is NULL. If entry->of_match is NULL, we should not dereference it in a debug statement. Fixes: d3e773613b6d ("dm: core: Use U-Boot logging instead of pr_debug()") Signed-off-by: H