summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorEli Billauer <eli.billauer@gmail.com>2013-12-31 01:16:24 +0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-09 22:42:35 +0400
commit24b33c909ec9096c0613ae30aedd2b4ba2e89efa (patch)
tree7c41dab9b43983505162dfc915ca21d9babe947b /drivers
parent35afa9fc153671ce782e210a1142ce14d4112750 (diff)
downloadlinux-24b33c909ec9096c0613ae30aedd2b4ba2e89efa.tar.xz
staging: xillybus: Changed Open Firmware "compatible" property
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/xillybus/xillybus_of.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/xillybus/xillybus_of.c b/drivers/staging/xillybus/xillybus_of.c
index 3b25b0e100b4..be124406d711 100644
--- a/drivers/staging/xillybus/xillybus_of.c
+++ b/drivers/staging/xillybus/xillybus_of.c
@@ -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 */
{}
};