On Thu, 2016-08-11 at 07:48 +0200, SF Markus Elfring wrote: > Prefer usage of the macro "pr_err" over the interface "printk". Not correct > diff --git a/drivers/staging/ks7010/ks7010_sdio.c b/drivers/staging/ks7010/ks7010_sdio.c [] > @@ -998,11 +998,11 @@ static int ks7010_sdio_probe(struct sdio_func *func, > /* private memory allocate */ > netdev = alloc_etherdev(sizeof(*priv)); > if (netdev == NULL) { > - printk(KERN_ERR "ks7010 : Unable to alloc new net device\n"); > + pr_err(pr_fmt("Unable to alloc new net device\n")); All of these pr_fmt uses are redundant as pr_err already does pr_fmt alloc_etherdev already does a dump_stack so the OOM isn't useful. > goto release_irq; > } > if (dev_alloc_name(netdev, "wlan%d") < 0) { > - printk(KERN_ERR "ks7010 : Couldn't get name!\n"); > + pr_err(pr_fmt("Couldn't get name!\n")); > goto free_dev; > } > > @@ -1042,8 +1042,7 @@ static int ks7010_sdio_probe(struct sdio_func *func, > /* Upload firmware */ > ret = ks7010_upload_firmware(priv, card); /* firmware load */ > if (ret) { > - printk(KERN_ERR > - "ks7010: firmware load failed !! retern code = %d\n", > + pr_err(pr_fmt("firmware load failed! return code = %d\n"), > ret); > goto free_buf; > } _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel