diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2009-09-21 20:04:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 10:17:43 -0400 |
commit | 621731980fe1b19f0a107e17e2af5f8d4411db3e (patch) | |
tree | 3c1168b17a32a5134bf23cce93341149020676e4 /arch/alpha | |
parent | 27258e448eb301cf89e351df87aa8cb916653bf2 (diff) |
alpha: use printk_once
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/kernel/pci_iommu.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c index bfb880af959d..d15aedfe6066 100644 --- a/arch/alpha/kernel/pci_iommu.c +++ b/arch/alpha/kernel/pci_iommu.c | |||
@@ -268,11 +268,7 @@ pci_map_single_1(struct pci_dev *pdev, void *cpu_addr, size_t size, | |||
268 | assume it doesn't support sg mapping, and, since we tried to | 268 | assume it doesn't support sg mapping, and, since we tried to |
269 | use direct_map above, it now must be considered an error. */ | 269 | use direct_map above, it now must be considered an error. */ |
270 | if (! alpha_mv.mv_pci_tbi) { | 270 | if (! alpha_mv.mv_pci_tbi) { |
271 | static int been_here = 0; /* Only print the message once. */ | 271 | printk_once(KERN_WARNING "pci_map_single: no HW sg\n"); |
272 | if (!been_here) { | ||
273 | printk(KERN_WARNING "pci_map_single: no HW sg\n"); | ||
274 | been_here = 1; | ||
275 | } | ||
276 | return 0; | 272 | return 0; |
277 | } | 273 | } |
278 | 274 | ||