.global sys32_helper sys32_helper: /* Args: syscall_args_32*, function pointer */ pushl %ebp pushl %ebx pushl %esi pushl %edi movl 5*4(%esp), %eax /* pointer to args struct */ movl 1*4(%eax), %ebx movl 2*4(%eax), %ecx movl 3*4(%eax), %edx movl 4*4(%eax), %esi movl 5*4(%eax), %edi movl 6*4(%eax), %ebp movl 0*4(%eax), %eax call *(6*4)(%esp) /* Do the syscall */ /* Now we need to recover without losing any reg values */ pushl %eax movl 6*4(%esp), %eax popl 0*4(%eax) movl %ebx, 1*4(%eax) movl %ecx, 2*4(%eax) movl %edx, 3*4(%eax) movl %esi, 4*4(%eax) movl %edi, 5*4(%eax) movl %ebp, 6*4(%eax) popl %edi popl %esi popl %ebx popl %ebp ret .type sys32_helper, @function .size sys32_helper, .-sys32_helper .global int80_and_ret int80_and_ret: int $0x80 ret .type int80_and_ret, @function .size int80_and_ret, .-int80_and_ret ut type='hidden' name='id' value='d81db24056132fe8b83e2fba337e9ea76675e68d'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/sound/soc/davinci/Kconfig
3
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorMarcel J.E. Mol <marcel@mesa.nl>2017-01-30 19:26:40 +0100
committerJohan Hovold <johan@kernel.org>2017-01-31 17:27:04 +0100
commitd07830db1bdb254e4b50d366010b219286b8c937 (patch)
tree354d7fca237fa3d7e7e63c2196eaa4e1086838ea /drivers/usb/renesas_usbhs
parent5d03a2fd2292e71936c4235885c35ccc3c94695b (diff)
USB: serial: pl2303: add ATEN device ID
Seems that ATEN serial-to-usb devices using pl2303 exist with different device ids. This patch adds a missing device ID so it is recognised by the driver. Signed-off-by: Marcel J.E. Mol <marcel@mesa.nl> Cc: stable <stable@vger.kernel.org> Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/renesas_usbhs')