lkml.org 
[lkml]   [2009]   [May]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 07/11] drivers/macintosh: Convert #ifdef DEBUG printk(KERN_DEBUG to pr_debug(
Date
From: Joe Perches <joe@perches.com>

Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/macintosh/ans-lcd.c | 16 ++++------------
1 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/drivers/macintosh/ans-lcd.c b/drivers/macintosh/ans-lcd.c
index 6a82218..d8b4d75 100644
--- a/drivers/macintosh/ans-lcd.c
+++ b/drivers/macintosh/ans-lcd.c
@@ -32,9 +32,7 @@ static volatile unsigned char __iomem *anslcd_ptr;
static void
anslcd_write_byte_ctrl ( unsigned char c )
{
-#ifdef DEBUG
- printk(KERN_DEBUG "LCD: CTRL byte: %02x\n",c);
-#endif
+ pr_debug("LCD: CTRL byte: %02x\n",c);
out_8(anslcd_ptr + ANSLCD_CTRL_IX, c);
switch(c) {
case 1:
@@ -59,9 +57,7 @@ anslcd_write( struct file * file, const char __user * buf,
const char __user *p = buf;
int i;

-#ifdef DEBUG
- printk(KERN_DEBUG "LCD: write\n");
-#endif
+ pr_debug("LCD: write\n");

if (!access_ok(VERIFY_READ, buf, count))
return -EFAULT;
@@ -81,9 +77,7 @@ anslcd_ioctl( struct inode * inode, struct file * file,
{
char ch, __user *temp;

-#ifdef DEBUG
- printk(KERN_DEBUG "LCD: ioctl(%d,%d)\n",cmd,arg);
-#endif
+ pr_debug("LCD: ioctl(%d,%d)\n",cmd,arg);

switch ( cmd )
{
@@ -164,9 +158,7 @@ anslcd_init(void)
return retval;
}

-#ifdef DEBUG
- printk(KERN_DEBUG "LCD: init\n");
-#endif
+ pr_debug("LCD: init\n");

anslcd_write_byte_ctrl ( 0x38 );
anslcd_write_byte_ctrl ( 0x0c );
--
1.6.3.1.9.g95405b.dirty


\
 
 \ /
  Last update: 2009-05-15 20:05    [W:0.481 / U:0.424 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site