diff options
author | John Crispin <john@phrozen.org> | 2017-02-20 10:29:43 +0100 |
---|---|---|
committer | James Hogan <jhogan@kernel.org> | 2017-11-13 13:01:49 +0000 |
commit | 8593b18ad348733b5d5ddfa0c79dcabf51dff308 (patch) | |
tree | 61de54d336d5b09134fe3a6ed3f9acfcdfaecd1d /arch/mips | |
parent | ab74abcee583eace43f184a29f6d10a4f93b5648 (diff) | |
download | linux-8593b18ad348733b5d5ddfa0c79dcabf51dff308.tar.bz2 |
MIPS: pci: Remove KERN_WARN instance inside the mt7620 driver
Switch the printk() call to the prefered pr_warn() api.
Fixes: 7e5873d3755c ("MIPS: pci: Add MT7620a PCIE driver")
Signed-off-by: John Crispin <john@phrozen.org>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: <stable@vger.kernel.org> # 4.5+
Patchwork: https://patchwork.linux-mips.org/patch/15321/
Signed-off-by: James Hogan <jhogan@kernel.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/pci/pci-mt7620.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/pci/pci-mt7620.c b/arch/mips/pci/pci-mt7620.c index 22e4c22e750b..1a0b80a1cc4a 100644 --- a/arch/mips/pci/pci-mt7620.c +++ b/arch/mips/pci/pci-mt7620.c @@ -120,7 +120,7 @@ static int wait_pciephy_busy(void) else break; if (retry++ > WAITRETRY_MAX) { - printk(KERN_WARN "PCIE-PHY retry failed.\n"); + pr_warn("PCIE-PHY retry failed.\n"); return -1; } } |