diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2011-10-30 06:00:44 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-02 01:59:09 +0400 |
commit | 048ca16935fdfbe17d1593e022eef4713c70c7e2 (patch) | |
tree | 8b52abdcd97e356bc07469cd09e32d29e361eb79 /drivers/isdn | |
parent | 73cb88ecb950ee67906d02354f781ea293bcf895 (diff) | |
download | linux-048ca16935fdfbe17d1593e022eef4713c70c7e2.tar.xz |
isdn: hisax: Fix typo 'HISAX_DE_AOC'
That should probably be 'CONFIG_DE_AOC'.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn')
-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 */ |