[Patch/master] pr_warn() must be pr_warning() instead
Uwe Kleine-König
u.kleine-koenig at pengutronix.de
Sat May 28 15:29:30 EDT 2011
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/ |
More information about the barebox
mailing list