mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
gigaset: fix build failure
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 <tilman@imap.cc> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
87faf3ccf1
commit
22001a13d0
1 changed files with 11 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue