summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2015-10-21 06:46:00 +0300
committerJoel Stanley <joel@jms.id.au>2015-10-23 07:31:49 +0300
commit755f444549e618b3ba841159cbf974522c8bbe17 (patch)
treea5af1ed605455309b28c8e6969af7cc1edbcd4f3
parentd4568582a0b430002ed8550da34f2598b647c2a6 (diff)
downloadlinux-755f444549e618b3ba841159cbf974522c8bbe17.tar.xz
misc/bt-host: use a more explicit compatible string
The interface we're using here is specific to the aspeed hardware implementation. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r--arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dts2
-rw-r--r--drivers/misc/bt-host.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dts b/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dts
index 4afa8ce81cce..31ed882d149c 100644
--- a/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-opp-palmetto.dts
@@ -87,7 +87,7 @@
};
ibt@1e789150 {
- compatible = "bt-host";
+ compatible = "aspeed,bt-host";
reg = <0x1e789140 0x18>;
};
diff --git a/drivers/misc/bt-host.c b/drivers/misc/bt-host.c
index 90713c541c81..f96137e45eec 100644
--- a/drivers/misc/bt-host.c
+++ b/drivers/misc/bt-host.c
@@ -313,7 +313,7 @@ static int bt_host_remove(struct platform_device *pdev)
}
static const struct of_device_id bt_host_match[] = {
- { .compatible = "bt-host" },
+ { .compatible = "aspeed,bt-host" },
{ },
};