diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2016-03-08 10:01:19 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-04-03 12:32:09 +0200 |
commit | 748ac56bb9533f867b25325a805d64f52a1a3a88 (patch) | |
tree | d8d10925e28392c70147214dbb92f2da9dee44c3 /arch/mips | |
parent | 732d4ba61be8144789eec66995c0bfd702c19b32 (diff) | |
download | linux-748ac56bb9533f867b25325a805d64f52a1a3a88.tar.gz linux-748ac56bb9533f867b25325a805d64f52a1a3a88.tar.bz2 linux-748ac56bb9533f867b25325a805d64f52a1a3a88.zip |
FIRMWARE: Broadcom: Fix grammar of warning messages in bcm47xx_sprom.c.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/bcm47xx/sprom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/bcm47xx/sprom.c b/arch/mips/bcm47xx/sprom.c index 959c145a0a2c..ca7ad131d057 100644 --- a/arch/mips/bcm47xx/sprom.c +++ b/arch/mips/bcm47xx/sprom.c @@ -714,11 +714,11 @@ void bcm47xx_sprom_register_fallbacks(void) { #if defined(CONFIG_BCM47XX_SSB) if (ssb_arch_register_fallback_sprom(&bcm47xx_get_sprom_ssb)) - pr_warn("Failed to registered ssb SPROM handler\n"); + pr_warn("Failed to register ssb SPROM handler\n"); #endif #if defined(CONFIG_BCM47XX_BCMA) if (bcma_arch_register_fallback_sprom(&bcm47xx_get_sprom_bcma)) - pr_warn("Failed to registered bcma SPROM handler\n"); + pr_warn("Failed to register bcma SPROM handler\n"); #endif } |