]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: xillybus: Changed Open Firmware "compatible" property
authorEli Billauer <eli.billauer@gmail.com>
Mon, 30 Dec 2013 21:16:24 +0000 (23:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2014 18:42:35 +0000 (10:42 -0800)
The previous "compatible" string was poorly chosen, but remains in the
match list to support existing DTBs. There is no risk for a naming clash.

Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xillybus/xillybus_of.c

index 3b25b0e100b400a5bb85398120fbdc71165d7451..be124406d7113a7d1c8cd5265161dae96beeaddc 100644 (file)
@@ -31,7 +31,8 @@ static const char xillyname[] = "xillybus_of";
 
 /* Match table for of_platform binding */
 static struct of_device_id xillybus_of_match[] = {
-       { .compatible = "xlnx,xillybus-1.00.a", },
+       { .compatible = "xillybus,xillybus-1.00.a", },
+       { .compatible = "xlnx,xillybus-1.00.a", }, /* Deprecated */
        {}
 };