Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 472c0644 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds
Browse files

Use KERN_WARNING instead of KERN_WARN, which does not exist

parent 79a56ed0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -224,14 +224,14 @@ Here is pseudo-code showing how this might be done:
		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);
	}