On Thu, May 26, 2011 at 09:39:12PM +0200, Juergen Beisert wrote: > 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"); The kernel has #define pr_warn pr_warning Maybe barebox should get that, too? Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox