mirror of https://gitee.com/openkylin/linux.git
Char: moxa, notify about board readiness
Drop a message to dmesg about card being ready. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Tested-by: Oyvind Aabling <Oyvind.Aabling@uni-c.dk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
08d01c7925
commit
bb9f910a11
|
@ -961,6 +961,9 @@ static int __devinit moxa_pci_probe(struct pci_dev *pdev,
|
||||||
|
|
||||||
pci_set_drvdata(pdev, board);
|
pci_set_drvdata(pdev, board);
|
||||||
|
|
||||||
|
dev_info(&pdev->dev, "board '%s' ready (%u ports, firmware loaded)\n",
|
||||||
|
moxa_brdname[board_type - 1], board->numPorts);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
err_base:
|
err_base:
|
||||||
iounmap(board->basemem);
|
iounmap(board->basemem);
|
||||||
|
@ -1047,6 +1050,10 @@ static int __init moxa_init(void)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printk(KERN_INFO "MOXA isa board found at 0x%.8lu and "
|
||||||
|
"ready (%u ports, firmware loaded)\n",
|
||||||
|
baseaddr[i], brd->numPorts);
|
||||||
|
|
||||||
brd++;
|
brd++;
|
||||||
isabrds++;
|
isabrds++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue