
rdunlap at xenotime
Nov 4, 2009, 4:04 PM
Post #1 of 1
(27 views)
Permalink
|
|
[PATCH 2/8] docs: use KERN_WARNING, not KERN_WARN
|
|
From: Randy Dunlap <randy.dunlap[at]oracle.com> Subject: Use KERN_WARNING instead of KERN_WARN, which does not exist Reported-by: Andrew Lyon <andrew.lyon[at]gmail.com> Signed-off-by: Randy Dunlap <randy.dunlap[at]oracle.com> --- Documentation/DMA-mapping.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- lnx-2632-rc6.orig/Documentation/DMA-mapping.txt +++ lnx-2632-rc6/Documentation/DMA-mapping.txt @@ -224,14 +224,14 @@ Here is pseudo-code showing how this mig card->playback_enabled = 1; } else { card->playback_enabled = 0; - printk(KERN_WARN "%s: Playback disabled due to DMA limitations.\n", + printk(KERN_WARNING "%s: Playback disabled due to DMA limitations.\n", card->name); } if (!pci_set_dma_mask(pdev, RECORD_ADDRESS_BITS)) { card->record_enabled = 1; } else { card->record_enabled = 0; - printk(KERN_WARN "%s: Record disabled due to DMA limitations.\n", + printk(KERN_WARNING "%s: Record disabled due to DMA limitations.\n", card->name); } -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo[at]vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|