mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
spi: lm70llp: remove printk
Using pr_* macros are more prefferable than using printk. Start using pr_* family of macros and define pr_fmt to be used with it. While at it remove DRVNAME from an existing pr_info() as the name is now being printed by pr_fmt. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
46c52c28de
commit
22de54a9b9
1 changed files with 4 additions and 4 deletions
|
@ -14,6 +14,8 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
|
@ -200,9 +202,7 @@ static void spi_lm70llp_attach(struct parport *p)
|
||||||
struct pardev_cb lm70llp_cb;
|
struct pardev_cb lm70llp_cb;
|
||||||
|
|
||||||
if (lm70llp) {
|
if (lm70llp) {
|
||||||
printk(KERN_WARNING
|
pr_warn("spi_lm70llp instance already loaded. Aborting.\n");
|
||||||
"%s: spi_lm70llp instance already loaded. Aborting.\n",
|
|
||||||
DRVNAME);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -298,7 +298,7 @@ out_parport_unreg:
|
||||||
out_free_master:
|
out_free_master:
|
||||||
spi_master_put(master);
|
spi_master_put(master);
|
||||||
out_fail:
|
out_fail:
|
||||||
pr_info("%s: spi_lm70llp probe fail, status %d\n", DRVNAME, status);
|
pr_info("spi_lm70llp probe fail, status %d\n", status);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void spi_lm70llp_detach(struct parport *p)
|
static void spi_lm70llp_detach(struct parport *p)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue