]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: Tweak device_is_on_pci_bus() for code size
authorSimon Glass <sjg@chromium.org>
Tue, 26 Sep 2023 14:14:57 +0000 (08:14 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 6 Oct 2023 18:38:13 +0000 (14:38 -0400)
This function cannot return true if PCI is not enabled, since no PCI
devices will have been bound. Add a check for this to reduce code size
where it is used.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/dm/device.h

index e54cb6bca415e0a8f7889da85d21cb81fa9b6cda..add67f9ec06f9ed43fc5a7f8899debad6514a421 100644 (file)
@@ -1005,7 +1005,8 @@ int dev_enable_by_path(const char *path);
  */
 static inline bool device_is_on_pci_bus(const struct udevice *dev)
 {
-       return dev->parent && device_get_uclass_id(dev->parent) == UCLASS_PCI;
+       return CONFIG_IS_ENABLED(PCI) && dev->parent &&
+               device_get_uclass_id(dev->parent) == UCLASS_PCI;
 }
 
 /**