Use NULL instead of 0 for pointer:

drivers/char/isicom.c:1274:14: warning: Using plain integer as NULL pointer

Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>

diffstat:=
 drivers/char/isicom.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -Naurp ./drivers/char/isicom.c~isicom_null ./drivers/char/isicom.c
--- ./drivers/char/isicom.c~isicom_null 2005-01-22 19:06:30.382664240 -0800
+++ ./drivers/char/isicom.c     2005-01-22 21:49:50.077884120 -0800
@@ -1271,7 +1271,7 @@ static void isicom_shutdown_port(struct 
        }       
        port->flags &= ~ASYNC_INITIALIZED;
        /* 3rd October 2000 : Vinayak P Risbud */
-       port->tty = 0;
+       port->tty = NULL;
        spin_unlock_irqrestore(&card->card_lock, flags);
        
        /*Fix done by Anil .S on 30-04-2001


--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to