From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754784Ab0CQVgk (ORCPT ); Wed, 17 Mar 2010 17:36:40 -0400 Received: from acsinet11.oracle.com ([141.146.126.233]:52948 "EHLO acsinet11.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751308Ab0CQVgj (ORCPT ); Wed, 17 Mar 2010 17:36:39 -0400 Message-ID: <4BA14B12.4030900@oracle.com> Date: Wed, 17 Mar 2010 14:35:14 -0700 From: Randy Dunlap Organization: Oracle Linux Engineering User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-3.fc11 Thunderbird/3.0 MIME-Version: 1.0 To: Tilman Schmidt CC: Karsten Keil , David Miller , Stephen Rothwell , linux-next@vger.kernel.org, Hansjoerg Lipp , isdn4linux , i4ldeveloper , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, stable@kernel.org Subject: Re: [PATCH] gigaset: fix build failure References: <20100317211231.569B140118@xenon.ts.pxnet.com> In-Reply-To: <20100317211231.569B140118@xenon.ts.pxnet.com> Content-Type: text/plain; charset=ISO-8859-9 Content-Transfer-Encoding: 7bit X-Source-IP: acsmt354.oracle.com [141.146.40.154] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A0B0208.4BA14B2B.01D7:SCFMA4539814,ss=1,fgs=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/17/10 10:37, Tilman Schmidt wrote: > Update the dummy LL interface to the LL interface change > introduced by commit daab433c03c15fd642c71c94eb51bdd3f32602c8. > This fixes the build failure occurring after that commit when > enabling ISDN_DRV_GIGASET but neither ISDN_I4L nor ISDN_CAPI. > > Impact: bugfix > Signed-off-by: Tilman Schmidt Acked-by: Randy Dunlap Thanks. > --- > drivers/isdn/gigaset/dummyll.c | 14 +++++++++++--- > 1 files changed, 11 insertions(+), 3 deletions(-) > > diff --git a/drivers/isdn/gigaset/dummyll.c b/drivers/isdn/gigaset/dummyll.c > index 5b27c99..bd0b1ea 100644 > --- a/drivers/isdn/gigaset/dummyll.c > +++ b/drivers/isdn/gigaset/dummyll.c > @@ -57,12 +57,20 @@ void gigaset_isdn_stop(struct cardstate *cs) > { > } > > -int gigaset_isdn_register(struct cardstate *cs, const char *isdnid) > +int gigaset_isdn_regdev(struct cardstate *cs, const char *isdnid) > { > - pr_info("no ISDN subsystem interface\n"); > return 1; > } > > -void gigaset_isdn_unregister(struct cardstate *cs) > +void gigaset_isdn_unregdev(struct cardstate *cs) > +{ > +} > + > +void gigaset_isdn_regdrv(void) > +{ > + pr_info("no ISDN subsystem interface\n"); > +} > + > +void gigaset_isdn_unregdrv(void) > { > } -- ~Randy