aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/xillybus
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2015-03-16 20:17:13 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-16 21:10:28 +0100
commitda2ff527e44bf3af851c1e5d9ac82d248df35417 (patch)
tree37345a229622c302b6a46390c70ca4d41f8cf132 /drivers/char/xillybus
parentmisc: constify of_device_id array (diff)
downloadlinux-dev-da2ff527e44bf3af851c1e5d9ac82d248df35417.tar.xz
linux-dev-da2ff527e44bf3af851c1e5d9ac82d248df35417.zip
char: constify of_device_id array
of_device_id is always used as const. (See driver.of_match_table and open firmware functions) Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/xillybus')
-rw-r--r--drivers/char/xillybus/xillybus_of.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/xillybus/xillybus_of.c b/drivers/char/xillybus/xillybus_of.c
index 2002a3a28146..781865084dc1 100644
--- a/drivers/char/xillybus/xillybus_of.c
+++ b/drivers/char/xillybus/xillybus_of.c
@@ -31,7 +31,7 @@ MODULE_LICENSE("GPL v2");
static const char xillyname[] = "xillybus_of";
/* Match table for of_platform binding */
-static struct of_device_id xillybus_of_match[] = {
+static const struct of_device_id xillybus_of_match[] = {
{ .compatible = "xillybus,xillybus-1.00.a", },
{ .compatible = "xlnx,xillybus-1.00.a", }, /* Deprecated */
{}