public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/7] Add mISDN driver
@ 2008-07-27  1:08 Karsten Keil
  2008-07-27  6:43 ` Ingo Molnar
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Karsten Keil @ 2008-07-27  1:08 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Please pull this and the following patches from 
git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master

mISDN is a new modular ISDN driver, in the long term it should replace
the old I4L driver architecture for passiv ISDN cards.

Signed-off-by: Karsten Keil <kkeil@suse.de>
---
 Documentation/isdn/README.mISDN |    6 ++++++
 drivers/isdn/Kconfig            |    4 +++-
 drivers/isdn/Makefile           |    1 +
 drivers/isdn/hardware/Makefile  |    1 +
 4 files changed, 11 insertions(+), 1 deletions(-)
 create mode 100644 Documentation/isdn/README.mISDN

diff --git a/Documentation/isdn/README.mISDN b/Documentation/isdn/README.mISDN
new file mode 100644
index 0000000..cd8bf92
--- /dev/null
+++ b/Documentation/isdn/README.mISDN
@@ -0,0 +1,6 @@
+mISDN is a new modular ISDN driver, in the long term it should replace
+the old I4L driver architecture for passiv ISDN cards.
+It was designed to allow a broad range of applications and interfaces
+but only have the basic function in kernel, the interface to the user
+space is based on sockets with a own address family AF_ISDN.
+
diff --git a/drivers/isdn/Kconfig b/drivers/isdn/Kconfig
index 66f946a..3d113c6 100644
--- a/drivers/isdn/Kconfig
+++ b/drivers/isdn/Kconfig
@@ -3,7 +3,7 @@
 #
 
 menuconfig ISDN
-	tristate "ISDN support"
+	bool "ISDN support"
 	depends on NET
 	depends on !S390
 	---help---
@@ -21,6 +21,8 @@ menuconfig ISDN
 
 if ISDN
 
+source "drivers/isdn/mISDN/Kconfig"
+
 menuconfig ISDN_I4L
 	tristate "Old ISDN4Linux (deprecated)"
 	---help---
diff --git a/drivers/isdn/Makefile b/drivers/isdn/Makefile
index 988142c..8380a45 100644
--- a/drivers/isdn/Makefile
+++ b/drivers/isdn/Makefile
@@ -4,6 +4,7 @@
 
 obj-$(CONFIG_ISDN_I4L)			+= i4l/
 obj-$(CONFIG_ISDN_CAPI)			+= capi/
+obj-$(CONFIG_MISDN)			+= mISDN/
 obj-$(CONFIG_ISDN_CAPI)			+= hardware/
 obj-$(CONFIG_ISDN_DIVERSION)		+= divert/
 obj-$(CONFIG_ISDN_DRV_HISAX)		+= hisax/
diff --git a/drivers/isdn/hardware/Makefile b/drivers/isdn/hardware/Makefile
index 11c8a18..a5d8fce 100644
--- a/drivers/isdn/hardware/Makefile
+++ b/drivers/isdn/hardware/Makefile
@@ -4,3 +4,4 @@
 
 obj-$(CONFIG_CAPI_AVM)		+= avm/
 obj-$(CONFIG_CAPI_EICON)	+= eicon/
+obj-$(CONFIG_MISDN)		+= mISDN/
-- 
1.5.6.4


-- 
Karsten Keil
SuSE Labs
ISDN and VOIP development
SUSE LINUX Products GmbH, Maxfeldstr.5 90409 Nuernberg, GF: Markus Rex, HRB 16746 (AG Nuernberg)

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/7] Add mISDN driver
  2008-07-27  1:08 [PATCH 1/7] Add mISDN driver Karsten Keil
@ 2008-07-27  6:43 ` Ingo Molnar
  2008-07-27  6:44   ` Ingo Molnar
  2008-07-29 10:15 ` Tilman Schmidt
  2008-08-04 19:54 ` Randy Dunlap
  2 siblings, 1 reply; 6+ messages in thread
From: Ingo Molnar @ 2008-07-27  6:43 UTC (permalink / raw)
  To: Linus Torvalds, linux-kernel


* Karsten Keil <kkeil@suse.de> wrote:

> Please pull this and the following patches from 
> git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master
> 
> mISDN is a new modular ISDN driver, in the long term it should replace 
> the old I4L driver architecture for passiv ISDN cards.

-tip testing found that the build broke due to these changes:

 drivers/isdn/hisax/built-in.o: In function `release_tei':
 (.text+0x29da): multiple definition of `release_tei'
 drivers/isdn/mISDN/built-in.o:(.text+0x8e80): first defined here

with this config:

 http://redhat.com/~mingo/misc/config-Sun_Jul_27_08_30_16_CEST_2008.bad

	Ingo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/7] Add mISDN driver
  2008-07-27  6:43 ` Ingo Molnar
@ 2008-07-27  6:44   ` Ingo Molnar
  2008-07-27 16:37     ` Karsten Keil
  0 siblings, 1 reply; 6+ messages in thread
From: Ingo Molnar @ 2008-07-27  6:44 UTC (permalink / raw)
  To: Karsten Keil; +Cc: Linus Torvalds, linux-kernel, Andrew Morton


( Please dont use Mail-Followup-To! It messed up replies _big_
  time. Mail repeated below.)

* Ingo Molnar <mingo@elte.hu> wrote:

> 
> * Karsten Keil <kkeil@suse.de> wrote:
> 
> > Please pull this and the following patches from 
> > git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master
> > 
> > mISDN is a new modular ISDN driver, in the long term it should replace 
> > the old I4L driver architecture for passiv ISDN cards.
> 
> -tip testing found that the build broke due to these changes:
> 
>  drivers/isdn/hisax/built-in.o: In function `release_tei':
>  (.text+0x29da): multiple definition of `release_tei'
>  drivers/isdn/mISDN/built-in.o:(.text+0x8e80): first defined here
> 
> with this config:
> 
>  http://redhat.com/~mingo/misc/config-Sun_Jul_27_08_30_16_CEST_2008.bad
> 
> 	Ingo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/7] Add mISDN driver
  2008-07-27  6:44   ` Ingo Molnar
@ 2008-07-27 16:37     ` Karsten Keil
  0 siblings, 0 replies; 6+ messages in thread
From: Karsten Keil @ 2008-07-27 16:37 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Karsten Keil, Linus Torvalds, linux-kernel, Andrew Morton

On Sun, Jul 27, 2008 at 08:44:52AM +0200, Ingo Molnar wrote:
> 
> ( Please dont use Mail-Followup-To! It messed up replies _big_
>   time. Mail repeated below.)

OK, hopefully it is disabled now.

> 
> * Ingo Molnar <mingo@elte.hu> wrote:
> 
> > 
> > * Karsten Keil <kkeil@suse.de> wrote:
> > 
> > > Please pull this and the following patches from 
> > > git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master
> > > 
> > > mISDN is a new modular ISDN driver, in the long term it should replace 
> > > the old I4L driver architecture for passiv ISDN cards.
> > 
> > -tip testing found that the build broke due to these changes:
> > 
> >  drivers/isdn/hisax/built-in.o: In function `release_tei':
> >  (.text+0x29da): multiple definition of `release_tei'
> >  drivers/isdn/mISDN/built-in.o:(.text+0x8e80): first defined here
> > 

Grumble, I thought I already catched this some days ago, but seems I forgot
to commit it. Will have a patch soon.

-- 
Karsten Keil
SuSE Labs
ISDN and VOIP development
SUSE LINUX Products GmbH, Maxfeldstr.5 90409 Nuernberg, GF: Markus Rex, HRB 16746 (AG Nuernberg)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/7] Add mISDN driver
  2008-07-27  1:08 [PATCH 1/7] Add mISDN driver Karsten Keil
  2008-07-27  6:43 ` Ingo Molnar
@ 2008-07-29 10:15 ` Tilman Schmidt
  2008-08-04 19:54 ` Randy Dunlap
  2 siblings, 0 replies; 6+ messages in thread
From: Tilman Schmidt @ 2008-07-29 10:15 UTC (permalink / raw)
  To: linux-kernel, Karsten Keil

[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]

On Sun, 27 Jul 2008 03:08:37 +0200, Karsten Keil wrote:
> Please pull this and the following patches from 
> git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master
> 
> mISDN is a new modular ISDN driver, in the long term it should replace
> the old I4L driver architecture for passiv ISDN cards.

At last. Thanks a lot for that effort!

>  Documentation/isdn/README.mISDN |    6 ++++++
>  drivers/isdn/Kconfig            |    4 +++-
>  drivers/isdn/Makefile           |    1 +
>  drivers/isdn/hardware/Makefile  |    1 +
>  4 files changed, 11 insertions(+), 1 deletions(-)

As the maintainer of an old I4L driver which I would like to convert
to mISDN as soon as possible, I would be very grateful if you could,
in time, also add a file Documentation/isdn/INTERFACE.mISDN describing
the in-kernel interface between the mISDN core and hardware specific
modules. (Like Documentation/isdn/INTERFACE does for I4L.)

Thanks again,
Tilman

-- 
Tilman Schmidt                    E-Mail: tilman@imap.cc
Bonn, Germany
Diese Nachricht besteht zu 100% aus wiederverwerteten Bits.
Ungeöffnet mindestens haltbar bis: (siehe Rückseite)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/7] Add mISDN driver
  2008-07-27  1:08 [PATCH 1/7] Add mISDN driver Karsten Keil
  2008-07-27  6:43 ` Ingo Molnar
  2008-07-29 10:15 ` Tilman Schmidt
@ 2008-08-04 19:54 ` Randy Dunlap
  2 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2008-08-04 19:54 UTC (permalink / raw)
  To: Karsten Keil; +Cc: Linus Torvalds, linux-kernel

On Sun, 27 Jul 2008 03:08:37 +0200 Karsten Keil wrote:

> Please pull this and the following patches from 
> git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/ISDN-2.6.git master
> 
> mISDN is a new modular ISDN driver, in the long term it should replace
> the old I4L driver architecture for passiv ISDN cards.


> diff --git a/Documentation/isdn/README.mISDN b/Documentation/isdn/README.mISDN
> new file mode 100644
> index 0000000..cd8bf92
> --- /dev/null
> +++ b/Documentation/isdn/README.mISDN
> @@ -0,0 +1,6 @@
> +mISDN is a new modular ISDN driver, in the long term it should replace

   mISDN is a new modular ISDN driver. In the long term, it should replace

> +the old I4L driver architecture for passiv ISDN cards.

                                       passive

> +It was designed to allow a broad range of applications and interfaces
> +but only have the basic function in kernel, the interface to the user

                                    in kernel. The interface

> +space is based on sockets with a own address family AF_ISDN.

                                  its own address family AF_ISDN.



Sorry about the delayed response.

---
~Randy
Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA
http://linuxplumbersconf.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-08-04 19:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-27  1:08 [PATCH 1/7] Add mISDN driver Karsten Keil
2008-07-27  6:43 ` Ingo Molnar
2008-07-27  6:44   ` Ingo Molnar
2008-07-27 16:37     ` Karsten Keil
2008-07-29 10:15 ` Tilman Schmidt
2008-08-04 19:54 ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox