Commit 20fe4ae1 authored by Mark Hounschell's avatar Mark Hounschell Committed by Greg Kroah-Hartman

staging: dgap: fix/change a pr_info

This patch just fixes a pr_info. brd->state is not proper
at this point in time.
Signed-off-by: default avatarMark Hounschell <markh@compro.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 70dc2336
......@@ -782,9 +782,8 @@ static int dgap_found_board(struct pci_dev *pdev, int id)
if (i)
brd->state = BOARD_FAILED;
pr_info("dgap: board %d: %s (rev %d), irq %ld, %s\n",
dgap_NumBoards, brd->name, brd->rev, brd->irq,
brd->state ? "NOT READY\0" : "READY\0");
pr_info("dgap: board %d: %s (rev %d), irq %ld\n",
dgap_NumBoards, brd->name, brd->rev, brd->irq);
return 0;
}
......
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