Symbol: bus_find_device
arch/powerpc/platforms/pseries/ibmebus.c
199
dev = bus_find_device(&ibmebus_bus_type, NULL, child,
arch/powerpc/platforms/pseries/ibmebus.c
283
dev = bus_find_device(&ibmebus_bus_type, NULL, path,
arch/powerpc/platforms/pseries/ibmebus.c
319
if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path,
drivers/acpi/utils.c
965
dev = bus_find_device(&acpi_bus_type, NULL, &match, acpi_dev_match_cb);
drivers/acpi/utils.c
998
dev = bus_find_device(&acpi_bus_type, start, &match, acpi_dev_match_cb);
drivers/acpi/x86/lpss.c
557
dev = bus_find_device(&platform_bus_type, NULL, &data, match_hid_uid);
drivers/acpi/x86/lpss.c
561
return bus_find_device(&pci_bus_type, NULL, &data, match_hid_uid);
drivers/base/bus.c
428
EXPORT_SYMBOL_GPL(bus_find_device);
drivers/base/platform.c
1517
return bus_find_device(&platform_bus_type, start, drv,
drivers/char/ipmi/ipmi_si_platform.c
426
while ((dev = bus_find_device(&platform_bus_type, NULL, name,
drivers/cxl/core/port.c
1387
dev = bus_find_device(&cxl_bus_type, NULL, ctx, match_port_by_dport);
drivers/cxl/core/port.c
1511
bus_find_device(&cxl_bus_type, NULL, &ctx, port_has_memdev);
drivers/cxl/core/port.c
1593
dev = bus_find_device(&cxl_bus_type, NULL, uport_dev, match_port_by_uport);
drivers/cxl/core/ras.c
97
struct device *mem_dev __free(put_device) = bus_find_device(
drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
1604
pdev = bus_find_device(&platform_bus_type, NULL, isp_sensor_ids,
drivers/hid/bpf/hid_bpf_dispatch.c
213
dev = bus_find_device(hid_ops->bus_type, NULL, &hid_id, device_match_id);
drivers/hwtracing/coresight/coresight-core.c
625
dev = bus_find_device(&coresight_bustype, NULL, &id,
drivers/i2c/i2c-core-acpi.c
454
dev = bus_find_device(&i2c_bus_type, NULL, handle, device_match_acpi_handle);
drivers/i2c/i2c-core-base.c
1881
dev = bus_find_device(&i2c_bus_type, NULL, fwnode,
drivers/iommu/virtio-iommu.c
1012
struct device *dev = bus_find_device(virtio_bus_type, NULL, fwnode,
drivers/media/pci/intel/ipu-bridge.c
196
dev = bus_find_device(&platform_bus_type, NULL, adev,
drivers/net/ethernet/ti/cpsw-phy-sel.c
174
dev = bus_find_device(&platform_bus_type, NULL, node, match);
drivers/net/ethernet/ti/davinci_emac.c
1513
phy = bus_find_device(&mdio_bus_type, NULL, NULL,
drivers/net/ethernet/toshiba/tc35815.c
706
struct device *pd = bus_find_device(&platform_bus_type, NULL,
drivers/nvmem/core.c
1118
dev = bus_find_device(&nvmem_bus_type, NULL, data, match);
drivers/of/overlay_test.c
95
dev = bus_find_device(&platform_bus_type, NULL, kunit_compatible,
drivers/pci/search.c
279
dev = bus_find_device(&pci_bus_type, dev_start, (void *)id,
drivers/platform/wmi/core.c
221
dev = bus_find_device(&wmi_bus_type, NULL, &guid, wmidev_match_guid);
drivers/platform/x86/dell/dell-lis3lv02d.c
215
dev = bus_find_device(&platform_bus_type, NULL, smo8800_ids, match_acpi_device_ids);
drivers/platform/x86/x86-android-tablets/core.c
192
adap_dev = bus_find_device(&i2c_bus_type, NULL, pdev, match_parent);
drivers/s390/cio/css.c
485
dev = bus_find_device(&css_bus_type, NULL,
drivers/s390/cio/device.c
649
dev = bus_find_device(&ccw_bus_type, NULL, dev_id, match_dev_id);
drivers/s390/cio/scm.c
191
dev = bus_find_device(&scm_bus_type, NULL, sale, check_address);
drivers/s390/crypto/ap_bus.c
1999
dev = bus_find_device(&ap_bus_type, NULL,
drivers/s390/crypto/ap_bus.c
2149
dev = bus_find_device(&ap_bus_type, NULL,
drivers/s390/crypto/ap_bus.c
2408
bus_find_device(&ap_bus_type, NULL,
drivers/thunderbolt/switch.c
3786
dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
drivers/thunderbolt/switch.c
3812
dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
drivers/thunderbolt/switch.c
3841
dev = bus_find_device(&tb_bus_type, NULL, &lookup, tb_switch_match);
drivers/usb/core/usb.c
437
dev = bus_find_device(&usb_bus_type, NULL, &argb, __find_interface);
drivers/usb/phy/phy-am335x-control.c
137
dev = bus_find_device(&platform_bus_type, NULL, node, match);
drivers/vdpa/vdpa.c
1341
dev = bus_find_device(&vdpa_bus, NULL, devname, vdpa_name_match);
drivers/vdpa/vdpa.c
1414
dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
drivers/vdpa/vdpa.c
1503
dev = bus_find_device(&vdpa_bus, NULL, devname, vdpa_name_match);
drivers/vdpa/vdpa.c
233
dev = bus_find_device(&vdpa_bus, NULL, dev_name(&vdev->dev), vdpa_name_match);
drivers/vdpa/vdpa.c
720
dev = bus_find_device(&vdpa_bus, NULL, name, vdpa_name_match);
drivers/vdpa/vdpa.c
804
dev = bus_find_device(&vdpa_bus, NULL, devname, vdpa_name_match);
include/linux/device/bus.h
157
struct device *bus_find_device(const struct bus_type *bus, struct device *start,
include/linux/device/bus.h
173
return bus_find_device(bus, start, name, device_match_name);
include/linux/device/bus.h
185
return bus_find_device(bus, NULL, np, device_match_of_node);
include/linux/device/bus.h
197
return bus_find_device(bus, NULL, fwnode, device_match_fwnode);
include/linux/device/bus.h
209
return bus_find_device(bus, NULL, &devt, device_match_devt);
include/linux/device/bus.h
221
return bus_find_device(bus, cur, NULL, device_match_any);
include/linux/device/bus.h
236
return bus_find_device(bus, NULL, adev, device_match_acpi_dev);
lib/kunit/platform-test.c
81
dev = bus_find_device(&platform_bus_type, NULL, name,
lib/kunit/platform-test.c
98
dev = bus_find_device(&platform_bus_type, NULL, name,