diff options
| author | Andrew Morton <akpm@osdl.org> | 2003-10-01 10:57:32 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-10-01 10:57:32 -0700 |
| commit | 297ec1fae1d855530c964f257f90fc620b689ba2 (patch) | |
| tree | 5e35e542507b0e94be1ae0f776781d4985aa579c | |
| parent | a04d38c50ffbad3fbbdcbf12ac343c641f3eeed3 (diff) | |
[PATCH] Add missing label in isdn_common.c
From: Herbert Xu <herbert@gondor.apana.org.au>
The last change to isdn_common.c removed a label that is used when
ISDN_PPP is defined. This patch puts it back.
| -rw-r--r-- | drivers/isdn/i4l/isdn_common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/isdn/i4l/isdn_common.c b/drivers/isdn/i4l/isdn_common.c index 2c3bf4025e7a..4f058754c5f8 100644 --- a/drivers/isdn/i4l/isdn_common.c +++ b/drivers/isdn/i4l/isdn_common.c @@ -2229,8 +2229,10 @@ static int __init isdn_init(void) isdn_info_update(); return 0; -/* err_tty_modem:*/ +#ifdef CONFIG_ISDN_PPP + err_tty_modem: isdn_tty_exit(); +#endif err_cleanup_devfs: isdn_cleanup_devfs(); unregister_chrdev(ISDN_MAJOR, "isdn"); |
