diff options
author | Christian Daudt <csd@broadcom.com> | 2013-08-20 08:37:19 -0700 |
---|---|---|
committer | Christian Daudt <csd@broadcom.com> | 2013-08-20 10:51:38 -0700 |
commit | aea237bfa0a8ce8fe364e3fa7de6850777044a60 (patch) | |
tree | daa7d7ce07327b787cd707f1d8add2ab896ecbeb /arch/arm/mach-bcm/bcm_kona_smc.c | |
parent | cf68b629f938c01c9aa84fff95e1be96032af08d (diff) | |
download | linux-aea237bfa0a8ce8fe364e3fa7de6850777044a60.tar.gz linux-aea237bfa0a8ce8fe364e3fa7de6850777044a60.tar.bz2 linux-aea237bfa0a8ce8fe364e3fa7de6850777044a60.zip |
ARM: DT: binding fixup to align with vendor-prefixes.txt (drivers)
[ this is a follow-up to this discussion:
http://archive.arm.linux.org.uk/lurker/message/20130730.230827.a1ceb12a.en.html ]
This patchset renames all uses of "bcm," name bindings to
"brcm," as they were done prior to knowing that brcm had
already been standardized as Broadcom vendor prefix
(in Documentation/devicetree/bindings/vendor-prefixes.txt).
This will not cause any churn on devices because none of
these bindings have made it into production yet.
Signed-off-by: Christian Daudt <csd@broadcom.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/mach-bcm/bcm_kona_smc.c')
-rw-r--r-- | arch/arm/mach-bcm/bcm_kona_smc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-bcm/bcm_kona_smc.c b/arch/arm/mach-bcm/bcm_kona_smc.c index 56d9d19b2470..bcc1c5903fb1 100644 --- a/arch/arm/mach-bcm/bcm_kona_smc.c +++ b/arch/arm/mach-bcm/bcm_kona_smc.c @@ -36,7 +36,8 @@ struct bcm_kona_smc_data { }; static const struct of_device_id bcm_kona_smc_ids[] __initconst = { - {.compatible = "bcm,kona-smc"}, + {.compatible = "brcm,kona-smc"}, + {.compatible = "bcm,kona-smc"}, /* deprecated name */ {}, }; |