Commit f2d6b6d8 authored by Kai Germaschewski's avatar Kai Germaschewski

add missing "\n" in printk statements.

parent 19afcee2
...@@ -1017,7 +1017,7 @@ setup_elsa(struct IsdnCard *card) ...@@ -1017,7 +1017,7 @@ setup_elsa(struct IsdnCard *card)
return(0); return(0);
} }
if (cs->hw.elsa.cfg & 0x80 && pci_rev == 1) { if (cs->hw.elsa.cfg & 0x80 && pci_rev == 1) {
printk(KERN_INFO "Elsa: PLX9050 rev1 workaround activated"); printk(KERN_INFO "Elsa: PLX9050 rev1 workaround activated\n");
set_bit(FLG_BUGGY_PLX9050, &cs->HW_Flags); set_bit(FLG_BUGGY_PLX9050, &cs->HW_Flags);
} }
cs->hw.elsa.ale = cs->hw.elsa.base; cs->hw.elsa.ale = cs->hw.elsa.base;
......
...@@ -636,7 +636,7 @@ setup_gazelpci(struct IsdnCardState *cs) ...@@ -636,7 +636,7 @@ setup_gazelpci(struct IsdnCardState *cs)
if (cs->hw.gazel.cfg_reg & 0x80) { if (cs->hw.gazel.cfg_reg & 0x80) {
pci_read_config_byte(dev_tel, PCI_REVISION_ID, &pci_rev); pci_read_config_byte(dev_tel, PCI_REVISION_ID, &pci_rev);
if (pci_rev == 1) { if (pci_rev == 1) {
printk(KERN_INFO "Gazel: PLX9050 rev1 workaround activated"); printk(KERN_INFO "Gazel: PLX9050 rev1 workaround activated\n");
set_bit(FLG_BUGGY_PLX9050, &cs->HW_Flags); set_bit(FLG_BUGGY_PLX9050, &cs->HW_Flags);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment