diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-02-19 16:05:00 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-03-02 21:52:06 +0100 |
commit | 73f76db8404b26d2257915f4cde25c6e00afed14 (patch) | |
tree | e0faf64e98437ffe2060a78d63614890c7c63ecc /drivers/tty/serial/8250 | |
parent | serial: 8250_exar: Clear interrupts before registering handler (diff) | |
download | linux-73f76db8404b26d2257915f4cde25c6e00afed14.tar.xz linux-73f76db8404b26d2257915f4cde25c6e00afed14.zip |
serial: 8250_exar: Use generic function to set firmware node
Use generic function to set firmware node instead of ACPI specific one.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240219150627.2101198-5-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/8250')
-rw-r--r-- | drivers/tty/serial/8250/8250_exar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c index 9ab30d974e29..cf3cd569c395 100644 --- a/drivers/tty/serial/8250/8250_exar.c +++ b/drivers/tty/serial/8250/8250_exar.c @@ -6,12 +6,12 @@ * * Copyright (C) 2017 Sudip Mukherjee, All Rights Reserved. */ -#include <linux/acpi.h> #include <linux/dmi.h> #include <linux/io.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/pci.h> +#include <linux/platform_device.h> #include <linux/property.h> #include <linux/serial_core.h> #include <linux/serial_reg.h> @@ -375,7 +375,7 @@ static struct platform_device *__xr17v35x_register_gpio(struct pci_dev *pcidev, return NULL; pdev->dev.parent = &pcidev->dev; - ACPI_COMPANION_SET(&pdev->dev, ACPI_COMPANION(&pcidev->dev)); + device_set_node(&pdev->dev, dev_fwnode(&pcidev->dev)); if (device_add_software_node(&pdev->dev, node) < 0 || platform_device_add(pdev) < 0) { |