lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 29 Dec 2014 11:41:14 +0200 From: Mika Westerberg <mika.westerberg@...ux.intel.com> To: linux-spi@...r.kernel.org Cc: Mark Brown <broonie@...nel.org>, Grant Likely <grant.likely@...aro.org>, Rob Herring <robh+dt@...nel.org>, "Rafael J. Wysocki" <rjw@...ysocki.net>, Mika Westerberg <mika.westerberg@...ux.intel.com>, linux-kernel@...r.kernel.org Subject: [PATCH] spi/spidev: Convert to use unified device property API This will allow the driver to match using DT compatible property if the device has ACPI _HID of "PRP0001" and accompanying "compatible" property listed in _DSD. Signed-off-by: Mika Westerberg <mika.westerberg@...ux.intel.com> --- drivers/spi/spidev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index 6941e04afb8c..f4742fad4307 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -700,7 +700,7 @@ static struct spi_driver spidev_spi_driver = { .driver = { .name = "spidev", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(spidev_dt_ids), + .of_match_table = spidev_dt_ids, }, .probe = spidev_probe, .remove = spidev_remove, -- 2.1.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists