From patchwork Sun Oct 30 12:00:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Bolle X-Patchwork-Id: 122598 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id C863BB6F90 for ; Sun, 30 Oct 2011 23:01:07 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933983Ab1J3MAs (ORCPT ); Sun, 30 Oct 2011 08:00:48 -0400 Received: from smtp-out2.tiscali.nl ([195.241.79.177]:38099 "EHLO smtp-out2.tiscali.nl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933965Ab1J3MAr (ORCPT ); Sun, 30 Oct 2011 08:00:47 -0400 Received: from [212.123.169.34] (helo=[192.168.1.103]) by smtp-out2.tiscali.nl with esmtp (Exim) (envelope-from ) id 1RKU4E-0001rN-Gx; Sun, 30 Oct 2011 13:00:46 +0100 Subject: [PATCH] [RESEND] [TRIVIAL] isdn: hisax: Fix typo 'HISAX_DE_AOC' From: Paul Bolle To: Jiri Kosina Cc: linux-kernel@vger.kernel.org, Karsten Keil , netdev@vger.kernel.org Date: Sun, 30 Oct 2011 13:00:44 +0100 Message-ID: <1319976044.14409.14.camel@x61.thuisdomein> Mime-Version: 1.0 X-Mailer: Evolution 2.32.3 (2.32.3-1.fc14) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org That should probably be 'CONFIG_DE_AOC'. Signed-off-by: Paul Bolle --- This is just the most obvious way to reconcile an unused Kconfig symbol (DE_AOC) and an unknown macro (HISAX_DE_AOC). But it's basically just educated guesswork. Entirely untested too. Added maintainer and netdev, since this might be stretching the definition of a trivial patch. 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 b0d9ab1..6a8acf6 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 */