spi: pxa2xx: Remove no more needed driver data
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 30 May 2024 15:09:59 +0000 (18:09 +0300)
committerMark Brown <broonie@kernel.org>
Mon, 3 Jun 2024 14:59:57 +0000 (15:59 +0100)
Since the ACPI enumerated devices provide a property with SSP type,
there is no more necessity to bear the copy of them in the ID table.
Drop the driver data in ACPI ID table.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://msgid.link/r/20240530151117.1130792-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx.c

index f4dc113768cd5441b5416c947b2bb629859250b6..b62a613378e013d3b909404ead2cc6a91f672632 100644 (file)
@@ -1718,12 +1718,12 @@ static const struct dev_pm_ops pxa2xx_spi_pm_ops = {
 };
 
 static const struct acpi_device_id pxa2xx_spi_acpi_match[] = {
-       { "80860F0E", LPSS_BYT_SSP },
-       { "8086228E", LPSS_BSW_SSP },
-       { "INT33C0", LPSS_LPT_SSP },
-       { "INT33C1", LPSS_LPT_SSP },
-       { "INT3430", LPSS_LPT_SSP },
-       { "INT3431", LPSS_LPT_SSP },
+       { "80860F0E" },
+       { "8086228E" },
+       { "INT33C0" },
+       { "INT33C1" },
+       { "INT3430" },
+       { "INT3431" },
        {}
 };
 MODULE_DEVICE_TABLE(acpi, pxa2xx_spi_acpi_match);