tdc: fix minor thing printing traces

Signed-off-by: Samuel Iglesias Gonsálvez's avatarSamuel Iglesias Gonsalvez <siglesias@igalia.com>
parent e27613f3
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
* version 2 as published by the Free Software Foundation. * version 2 as published by the Free Software Foundation.
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <asm/io.h> #include <asm/io.h>
......
...@@ -83,7 +83,7 @@ int tdc_activate_acquisition(struct spec_tdc *tdc) ...@@ -83,7 +83,7 @@ int tdc_activate_acquisition(struct spec_tdc *tdc)
acam_status_test = tdc_acam_status(tdc)-0xC4000800; acam_status_test = tdc_acam_status(tdc)-0xC4000800;
if (acam_status_test != 0) { if (acam_status_test != 0) {
pr_err( "ACAM status not ready! 0x%x\n", acam_status_test); pr_err( "ACAM status: not ready! 0x%x\n", acam_status_test);
return -EBUSY; return -EBUSY;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment