summaryrefslogtreecommitdiffstats
path: root/drivers/isdn/sc
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-11-28 03:58:46 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-11-28 03:58:46 +0000
commitb63ad0882a16a5d28003e57f2b0b81dee3fb322b (patch)
tree0a343ce219e2b8b38a5d702d66032c57b83d9720 /drivers/isdn/sc
parenta9d7bff9a84dba79609a0002e5321b74c4d64c64 (diff)
Merge with 2.4.0-test11.
Diffstat (limited to 'drivers/isdn/sc')
-rw-r--r--drivers/isdn/sc/debug.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/isdn/sc/debug.c b/drivers/isdn/sc/debug.c
index b1bdf57af..09c11f57d 100644
--- a/drivers/isdn/sc/debug.c
+++ b/drivers/isdn/sc/debug.c
@@ -1,5 +1,5 @@
/*
- * $Id: debug.c,v 1.3 1997/10/01 09:22:20 fritz Exp $
+ * $Id: debug.c,v 1.5 2000/11/12 15:29:37 kai Exp $
* Copyright (C) 1996 SpellCaster Telecommunications Inc.
*
* This program is free software; you can redistribute it and/or modify
@@ -27,11 +27,6 @@
*/
#include <linux/kernel.h>
-#define NULL 0x0
-
-#define REQUEST_IRQ(a,b,c,d,e) request_irq(a,b,c,d,e)
-#define FREE_IRQ(a,b) free_irq(a,b)
-
inline char *strcpy(char *, const char *);
int dbg_level = 0;
@@ -61,7 +56,7 @@ inline char *strcpy(char *dest, const char *src)
*i = *j;
i++; j++;
}
- *(++i) = NULL;
+ *(++i) = 0;
return dest;
}