[Patch/master] pr_warn() must be pr_warning() instead
Juergen Beisert
jbe at pengutronix.de
Thu May 26 15:39:12 EDT 2011
Fixing the following warning and error message:
[...]
drivers/mci/mci-core.c: In function 'mci_card_probe':
drivers/mci/mci-core.c:1195:3: warning: implicit declaration of function 'pr_warn'
[...]
drivers/built-in.o: In function `mci_card_probe':
/home/jb/work/Pengutronix/barebox-development/barebox-git/drivers/mci/mci-core.c:1195: undefined reference to `pr_warn'
diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
index a06c997..79c5e82 100644
--- a/drivers/mci/mci-core.c
+++ b/drivers/mci/mci-core.c
@@ -1192,7 +1192,7 @@ static int mci_card_probe(struct device_d *mci_dev)
/* reset the card */
rc = mci_go_idle(mci_dev);
if (rc) {
- pr_warn("Cannot reset the SD/MMC card\n");
+ pr_warning("Cannot reset the SD/MMC card\n");
goto on_error;
}
--
Pengutronix e.K. | Juergen Beisert |
Linux Solutions for Science and Industry | Phone: +49-5121-206917-5128 |
Vertretung Sued/Muenchen, Germany | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de/ |
More information about the barebox
mailing list