diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2016-02-19 16:01:16 +0000 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2016-03-04 12:32:18 +0530 |
commit | c428013783dc969d9d298e81b2d276a9dc0003ab (patch) | |
tree | 15eec0e069d94e01e174a4dbbabee9f29e44bd8d /drivers/mailbox | |
parent | adf06ba9b363c05eaf4da8afb02f5e99dd5caac9 (diff) | |
download | linux-c428013783dc969d9d298e81b2d276a9dc0003ab.tar.bz2 |
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.c | 2 |
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" }, {}, }; |