diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2011-10-12 23:19:32 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-11-01 15:04:02 +0100 |
commit | e1d01d5416f3ab7fc88b5850d56510e47e4f62e4 (patch) | |
tree | fb7076862a06add0d2d2e353abcfa698e5cd19b8 | |
parent | Kconfig: remove a few puzzling comments (diff) | |
download | linux-e1d01d5416f3ab7fc88b5850d56510e47e4f62e4.tar.xz linux-e1d01d5416f3ab7fc88b5850d56510e47e4f62e4.zip |
isdn: hisax: Fix wrong macro name 'HISAX_DE_AOC'
That should be 'CONFIG_DE_AOC'.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | 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 b0d9ab1f21c0..6a8acf65777d 100644 --- a/drivers/isdn/hisax/l3dss1.c +++ b/drivers/isdn/hisax/l3dss1.c @@ -353,7 +353,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) \ @@ -422,9 +422,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 */ |