mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
thunderbolt: Replace acpi_bus_get_device()
Replace acpi_bus_get_device() that is going to be dropped with acpi_fetch_acpi_dev(). No intentional functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
parent
30a4eca69b
commit
7f7b571bec
@ -14,15 +14,15 @@
|
|||||||
static acpi_status tb_acpi_add_link(acpi_handle handle, u32 level, void *data,
|
static acpi_status tb_acpi_add_link(acpi_handle handle, u32 level, void *data,
|
||||||
void **return_value)
|
void **return_value)
|
||||||
{
|
{
|
||||||
|
struct acpi_device *adev = acpi_fetch_acpi_dev(handle);
|
||||||
struct fwnode_reference_args args;
|
struct fwnode_reference_args args;
|
||||||
struct fwnode_handle *fwnode;
|
struct fwnode_handle *fwnode;
|
||||||
struct tb_nhi *nhi = data;
|
struct tb_nhi *nhi = data;
|
||||||
struct acpi_device *adev;
|
|
||||||
struct pci_dev *pdev;
|
struct pci_dev *pdev;
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (acpi_bus_get_device(handle, &adev))
|
if (!adev)
|
||||||
return AE_OK;
|
return AE_OK;
|
||||||
|
|
||||||
fwnode = acpi_fwnode_handle(adev);
|
fwnode = acpi_fwnode_handle(adev);
|
||||||
|
Loading…
Reference in New Issue
Block a user