Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 975439fe authored by Ingo Molnar's avatar Ingo Molnar
Browse files

Merge branch 'x86/amd-iommu' into x86/urgent

parents ef310237 129d6aba
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -2560,9 +2560,6 @@ Your cooperation is appreciated.
		 96 = /dev/usb/hiddev0	1st USB HID device
		    ...
		111 = /dev/usb/hiddev15	16th USB HID device
		112 = /dev/usb/auer0	1st auerswald ISDN device
		    ...
		127 = /dev/usb/auer15	16th auerswald ISDN device
		128 = /dev/usb/brlvgr0	First Braille Voyager device
		    ...
		131 = /dev/usb/brlvgr3	Fourth Braille Voyager device
+0 −1
Original line number Diff line number Diff line
@@ -105,7 +105,6 @@ Code Seq# Include File Comments
'T'	all	linux/soundcard.h	conflict!
'T'	all	asm-i386/ioctls.h	conflict!
'U'	00-EF	linux/drivers/usb/usb.h
'U'	F0-FF	drivers/usb/auerswald.c
'V'	all	linux/vt.h
'W'	00-1F	linux/watchdog.h	conflict!
'W'	00-1F	linux/wanrouter.h	conflict!

Documentation/usb/auerswald.txt

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
		Auerswald USB kernel driver
		===========================

What is it? What can I do with it?
==================================
The auerswald USB kernel driver connects your linux 2.4.x
system to the auerswald usb-enabled devices.

There are two types of auerswald usb devices:
a) small PBX systems (ISDN)
b) COMfort system telephones (ISDN)

The driver installation creates the devices
/dev/usb/auer0..15. These devices carry a vendor-
specific protocol. You may run all auerswald java
software on it. The java software needs a native
library "libAuerUsbJNINative.so" installed on
your system. This library is available from
auerswald and shipped as part of the java software.

You may create the devices with:
	mknod -m 666 /dev/usb/auer0 c 180 112
	...
	mknod -m 666 /dev/usb/auer15 c 180 127

Future plans
============
- Connection to ISDN4LINUX (the hisax interface)

The maintainer of this driver is wolfgang@iksw-muees.de
+6 −1
Original line number Diff line number Diff line
@@ -436,7 +436,12 @@ post_reset; the USB core guarantees that this is true of internal
suspend/resume events as well.

If a driver wants to block all suspend/resume calls during some
critical section, it can simply acquire udev->pm_mutex.
critical section, it can simply acquire udev->pm_mutex. Note that
calls to resume may be triggered indirectly. Block IO due to memory
allocations can make the vm subsystem resume a device. Thus while
holding this lock you must not allocate memory with GFP_KERNEL or
GFP_NOFS.

Alternatively, if the critical section might call some of the
usb_autopm_* routines, the driver can avoid deadlock by doing:

+7 −6
Original line number Diff line number Diff line
@@ -2928,6 +2928,12 @@ M: jirislaby@gmail.com
L:	linux-kernel@vger.kernel.org
S:	Maintained

MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
P:     Felipe Balbi
M:     felipe.balbi@nokia.com
L:     linux-usb@vger.kernel.org
S:     Maintained

MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
P:	Andrew Gallatin
M:	gallatin@myri.com
@@ -3076,6 +3082,7 @@ M: horms@verge.net.au
P:	Julian Anastasov
M:	ja@ssi.bg
L:	netdev@vger.kernel.org
L:	lvs-devel@vger.kernel.org
S:	Maintained

NFS, SUNRPC, AND LOCKD CLIENTS
@@ -4195,12 +4202,6 @@ M: oliver@neukum.name
L:	linux-usb@vger.kernel.org
S:	Maintained

USB AUERSWALD DRIVER
P:	Wolfgang Muees
M:	wolfgang@iksw-muees.de
L:      linux-usb@vger.kernel.org
S:	Maintained

USB BLOCK DRIVER (UB ub)
P:	Pete Zaitcev
M:	zaitcev@redhat.com
Loading