From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH] gigaset: fix build failure Date: Wed, 17 Mar 2010 14:35:14 -0700 Message-ID: <4BA14B12.4030900@oracle.com> References: <20100317211231.569B140118@xenon.ts.pxnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-9 Content-Transfer-Encoding: 7bit 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 To: Tilman Schmidt Return-path: In-Reply-To: <20100317211231.569B140118@xenon.ts.pxnet.com> Sender: linux-next-owner@vger.kernel.org List-Id: netdev.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