summaryrefslogtreecommitdiff
path: root/drivers/staging/cxt1e1/functions.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-05-03 11:02:44 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 11:36:02 -0700
commite6e4d05d4d440f1989f696baa146263957593345 (patch)
treed937038d848c60721b2564482f7de2599ff75adf /drivers/staging/cxt1e1/functions.c
parent3b9fdcd5e85104e622c0ec5f626c81b831ddfae2 (diff)
Staging: cxt1e1: fix cxt1e1 module names
On Mon, 2010-05-03 at 10:09 -0700, Randy Dunlap wrote: > Lots of cxt1e1 source code uses THIS_MODULE->name, which won't build > when CONFIG_MODULES is not enabled, so use KBUILD_MODNAME instead. Perhaps a conversion to pr_<level> is better? Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/cxt1e1/functions.c')
-rw-r--r--drivers/staging/cxt1e1/functions.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/staging/cxt1e1/functions.c b/drivers/staging/cxt1e1/functions.c
index c95c62dfb04..738129d62bb 100644
--- a/drivers/staging/cxt1e1/functions.c
+++ b/drivers/staging/cxt1e1/functions.c
@@ -11,6 +11,8 @@
* GNU General Public License for more details.
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/slab.h>
#include <asm/io.h>
#include <asm/byteorder.h>
@@ -117,7 +119,7 @@ watchdog_func (unsigned long arg)
if (drvr_state != SBE_DRVR_AVAILABLE)
{
if (log_level >= LOG_MONITOR)
- printk (KERN_WARNING "watchdog_func: drvr not available (%x)\n", drvr_state);
+ pr_warning("%s: drvr not available (%x)\n", __func__, drvr_state);
return;
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0)