|
@@ -14,6 +14,8 @@
|
|
|
* GNU General Public License for more details.
|
|
|
*/
|
|
|
|
|
|
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
+
|
|
|
#include <linux/init.h>
|
|
|
#include <linux/module.h>
|
|
|
#include <linux/kernel.h>
|
|
@@ -200,9 +202,7 @@ static void spi_lm70llp_attach(struct parport *p)
|
|
|
struct pardev_cb lm70llp_cb;
|
|
|
|
|
|
if (lm70llp) {
|
|
|
- printk(KERN_WARNING
|
|
|
- "%s: spi_lm70llp instance already loaded. Aborting.\n",
|
|
|
- DRVNAME);
|
|
|
+ pr_warn("spi_lm70llp instance already loaded. Aborting.\n");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -298,7 +298,7 @@ out_parport_unreg:
|
|
|
out_free_master:
|
|
|
spi_master_put(master);
|
|
|
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)
|