[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHk-=wjxiAvNJejbpMbn_CMYzU97uHFPiRmYQ5Gaxw56UyK8sA@mail.gmail.com>
Date: Tue, 16 Jul 2024 11:02:02 -0700
From: Linus Torvalds <torvalds@...ux-foundation.org>
To: Manivannan Sadhasivam <manivannan.sadhasivam@...aro.org>
Cc: Bartosz Golaszewski <brgl@...ev.pl>, Bjorn Helgaas <bhelgaas@...gle.com>, linux-pci@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] PCI: Check for the existence of 'dev.of_node' before
calling of_platform_populate()
On Tue, 16 Jul 2024 at 01:04, Manivannan Sadhasivam
<manivannan.sadhasivam@...aro.org> wrote:
>
> - if (IS_ENABLED(CONFIG_OF) && pci_is_bridge(dev)) {
> + if (IS_ENABLED(CONFIG_OF) && dev_of_node(&dev->dev) && pci_is_bridge(dev)) {
> retval = of_platform_populate(dev->dev.of_node, NULL, NULL,
> &dev->dev);
I think you should just drop the IS_ENABLED(CONFIG_OF) check entirely.
afaik, dev_of_node() already returns NULL if CONFIG_OF isn't set.
So the bug was literally that you based the decision on something
pointless that shouldn't be there at all.
Linus
Powered by blists - more mailing lists