2009-09-26 17:39:42

by Jaswinder Singh Rajput

[permalink] [raw]
Subject: [PATCH] isdn: Fix HISAX_DE_AOC it should be CONFIG_DE_AOC


HISAX_DE_AOC is not defined, it should be CONFIG_DE_AOC

Reported-by: Robert P. J. Day <[email protected]>
Signed-off-by: Jaswinder Singh Rajput <[email protected]>
Cc: Karsten Keil <[email protected]>
Cc: Armin Schindler <[email protected]>
Cc: Hansjoerg Lipp <[email protected]>
Cc: Tilman Schmidt <[email protected]>
---
drivers/isdn/hisax/l3dss1.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/isdn/hisax/l3dss1.c b/drivers/isdn/hisax/l3dss1.c
index a12fa4d..1e5b80b 100644
--- a/drivers/isdn/hisax/l3dss1.c
+++ b/drivers/isdn/hisax/l3dss1.c
@@ -352,7 +352,7 @@ l3dss1_parse_facility(struct PStack *st, struct l3_process *pc,
{ l3dss1_dummy_invoke(st, cr, id, ident, p, nlen);
return;
}
-#ifdef HISAX_DE_AOC
+#ifdef CONFIG_DE_AOC
{

#define FOO1(s,a,b) \
@@ -421,9 +421,9 @@ l3dss1_parse_facility(struct PStack *st, struct l3_process *pc,
#undef FOO1

}
-#else /* not HISAX_DE_AOC */
+#else /* not CONFIG_DE_AOC */
l3_debug(st, "invoke break");
-#endif /* not HISAX_DE_AOC */
+#endif /* not CONFIG_DE_AOC */
break;
case 2: /* return result */
/* if no process available handle separately */
--
1.6.0.6