mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 21:44:06 +08:00
staging: ft1000: Convert printk to dev_err in ft1000_cs.c
This patch converts printk to dev_err in ft1000_cs.c Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6081443758
commit
6d602cf17b
@ -95,20 +95,20 @@ static int ft1000_config(struct pcmcia_device *link)
|
||||
/* setup IO window */
|
||||
ret = pcmcia_loop_config(link, ft1000_confcheck, NULL);
|
||||
if (ret) {
|
||||
printk(KERN_INFO "ft1000: Could not configure pcmcia\n");
|
||||
dev_err(&link->dev, "Could not configure pcmcia\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
/* configure device */
|
||||
ret = pcmcia_enable_device(link);
|
||||
if (ret) {
|
||||
printk(KERN_INFO "ft1000: could not enable pcmcia\n");
|
||||
dev_err(&link->dev, "Could not enable pcmcia\n");
|
||||
goto failed;
|
||||
}
|
||||
|
||||
link->priv = init_ft1000_card(link, &ft1000_reset);
|
||||
if (!link->priv) {
|
||||
printk(KERN_INFO "ft1000: Could not register as network device\n");
|
||||
dev_err(&link->dev, "Could not register as network device\n");
|
||||
goto failed;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user