aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mailbox
diff options
context:
space:
mode:
authorSudeep Holla <sudeep.holla@arm.com>2016-02-19 16:01:16 +0000
committerJassi Brar <jaswinder.singh@linaro.org>2016-03-04 12:32:18 +0530
commitc428013783dc969d9d298e81b2d276a9dc0003ab (patch)
tree15eec0e069d94e01e174a4dbbabee9f29e44bd8d /drivers/mailbox
parentmailbox: mailbox-test: rename driver as generic test driver (diff)
downloadlinux-dev-c428013783dc969d9d298e81b2d276a9dc0003ab.tar.xz
linux-dev-c428013783dc969d9d298e81b2d276a9dc0003ab.zip
mailbox: mailbox-test: fix the compatible string
Underscores are usually forbidden in the compatible strings. So lets remove it before the first users of this is seen. Acked-by: Rob Herring <robh@kernel.org> Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r--drivers/mailbox/mailbox-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/mailbox-test.c b/drivers/mailbox/mailbox-test.c
index 3813f6d9eba9..036a852b5fa1 100644
--- a/drivers/mailbox/mailbox-test.c
+++ b/drivers/mailbox/mailbox-test.c
@@ -342,7 +342,7 @@ static int mbox_test_remove(struct platform_device *pdev)
}
static const struct of_device_id mbox_test_match[] = {
- { .compatible = "mailbox_test" },
+ { .compatible = "mailbox-test" },
{},
};