Hi! I've been pooking around to get my "Leadtek Winfast USB II Deluxe" working in Ubuntu 9.10 (kernel 2.6.31-12-generic). The code for the drivers is collected with: hg clone http://linuxtv.org/hg/v4l-dvb So far, in television mode, I can tune channels and get picture. But I have no sound. In Composite mode I have picture and sound, altho it's just black and white. (Might depend on my source tho, I haven't put that much time into it.) In Svideo mode I have sound and color picture, so thats OK. To get any sound in tvtime or Xawttv, I have to run "sox -r 48000 -c 2 -t ossdsp /dev/dsp1 -t ossdsp /dev/dsp" in a terminal. Only works with Composite/Svideo. The changes I've made to make it work so far is the following: em28xx-cards.c { USB_DEVICE(0x0413, 0x6023), .driver_info = EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE }, Just for my own convenience, otherwise it finds the LEADTEK_WINFAST_USBII device instead, I got bored with doing "modprobe em28xx card=28" ;-p. [EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE] = { .name = "Leadtek Winfast USB II Deluxe", .valid = EM28XX_BOARD_NOT_VALIDATED, .tuner_type = TUNER_PHILIPS_FM1216ME_MK3, .tda9887_conf = TDA9887_PRESENT, .decoder = EM28XX_SAA711X, .input = { { .type = EM28XX_VMUX_TELEVISION, .vmux = SAA7115_COMPOSITE4, */ Was SAA7115_COMPOSITE2 originally */ .amux = EM28XX_AMUX_VIDEO, }, { .type = EM28XX_VMUX_COMPOSITE1, .vmux = SAA7115_COMPOSITE5, */ Was SAA7115_COMPOSITE0 originally */ .amux = EM28XX_AMUX_LINE_IN, }, { .type = EM28XX_VMUX_SVIDEO, .vmux = SAA7115_SVIDEO3, */ Was SAA7115_COMPOSITE0 originally */ .amux = EM28XX_AMUX_LINE_IN, } }, saa7115.c R_08_SYNC_CNTL, 0x28, /* 0xBO: auto detection, 0x68 = NTSC */ Changed it from 0x68, so I don't have to switch back to PAL after switching input mode. Just for my own convenience. When I was searching the internet for information about getting my usb tv tuner working, I came across this thread. http://thread.gmane.org/gmane.linux.drivers.em28xx/97/focus=124 (Cut from the post where the poster got working picture and audio. After snooping the device in Windows and parsing the output with parser.pl, then playing around with Usbreplay (a tool I don't have access to tho, and he was using a em28xx-new build.)) "This line made the video appear: 000385: OUT: 000001 ms 005258 ms 40 02 00 00 42 00 02 00 >>> 02 c4 And this worked for audio: 000895: OUT: 000000 ms 006684 ms 40 00 00 00 42 00 01 00 >>> 16 This line made both usb audio and jack audio output of the device work :)" The video output I fixed with ".vmux = SAA7115_COMPOSITE4, ". After snooping my device in windows, just swapping between television/Composite/Svideo, I didn't get any line with: 40 00 00 00 42 00 01 00 >>> 16 The only comparable output I found from my snooping is: 40 00 00 00 42 00 01 00 >>> 02 (Might be because we didn't use the same drivers in Windows, default the installation program installs the drivers for "Winfast TV USB II", doh!.) When loading em28xx with reg_debug=1 and doing the same swapping between input modes, as I did in windows, with tvtime or xawtv. I got the following lines in syslog containing "40 00 00 00 42 00 01 00" after every input mode switch. [ 2548.560012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 2548.584049] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 2548.608014] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 2548.632012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 2548.656012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 2548.732012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 2548.756012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 2548.780012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 2548.804013] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 2548.828012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 2548.852013] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 2548.876012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 2548.900012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 2548.924009] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 2548.948012] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 2548.972013] (pipe 0x80000600): OUT: 40 00 00 00 42 00 01 00 >>> 02 This might not be the source of my problem, since it both starts and ends with ">>> 02", but the em28xx driver seems to be unnecessarily chatty to me. There is much more difference's between the logs than that tho, added examples from each log as attachments, for those that would care to look at it :-). One funny detail in those logs: "40 02 00 00 42 00 02 00 >>> 02 c5" Composite in windows is "40 02 00 00 42 00 02 00 >>> 02 85" in linux "40 02 00 00 42 00 02 00 >>> 02 c4" Television in windows is "40 02 00 00 42 00 02 00 >>> 02 84" in linux "40 02 00 00 42 00 02 00 >>> 02 c9" Svideo in windows is "40 02 00 00 42 00 02 00 >>> 02 89" in linux. Any hints on how I should proceed would be appreciated ;-). Regards Magnus Alm
dmesg [ 1974.175750] em28xx: New device Leadtek WinFast TV USB II Deluxe @ 480 Mbps (0413:6023, interface 0, class 0) [ 1974.177376] em28xx #0: chip ID is em2820 (or em2710) [ 1974.304861] em28xx #0: i2c eeprom 00: 1a eb 67 95 13 04 23 60 14 00 1e 03 7c 34 6a 12 [ 1974.304870] em28xx #0: i2c eeprom 10: 00 00 06 57 00 00 00 00 30 3e b0 60 03 03 03 03 [ 1974.304877] em28xx #0: i2c eeprom 20: 1e 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304883] em28xx #0: i2c eeprom 30: 00 00 20 40 20 80 02 20 01 01 00 00 00 00 00 00 [ 1974.304889] em28xx #0: i2c eeprom 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304895] em28xx #0: i2c eeprom 50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304901] em28xx #0: i2c eeprom 60: 00 00 00 00 00 00 00 00 00 00 12 03 4c 00 65 00 [ 1974.304908] em28xx #0: i2c eeprom 70: 61 00 64 00 74 00 65 00 6b 00 00 00 34 03 57 00 [ 1974.304914] em28xx #0: i2c eeprom 80: 69 00 6e 00 46 00 61 00 73 00 74 00 20 00 54 00 [ 1974.304920] em28xx #0: i2c eeprom 90: 56 00 20 00 55 00 53 00 42 00 20 00 49 00 49 00 [ 1974.304926] em28xx #0: i2c eeprom a0: 20 00 44 00 65 00 6c 00 75 00 78 00 65 00 00 00 [ 1974.304932] em28xx #0: i2c eeprom b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304938] em28xx #0: i2c eeprom c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304945] em28xx #0: i2c eeprom d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304951] em28xx #0: i2c eeprom e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304957] em28xx #0: i2c eeprom f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 1974.304964] em28xx #0: EEPROM ID= 0x9567eb1a, EEPROM hash = 0xa21de2b2 [ 1974.304966] em28xx #0: EEPROM info: [ 1974.304967] em28xx #0: AC97 audio (5 sample rates) [ 1974.304968] em28xx #0: USB Self power capable [ 1974.304970] em28xx #0: 500mA max power [ 1974.304972] em28xx #0: Table at 0x06, strings=0x347c, 0x126a, 0x0000 [ 1974.305734] em28xx #0: Identified as Leadtek Winfast USB II Deluxe (card=28) [ 1974.305736] em28xx #0: [ 1974.305737] [ 1974.305739] em28xx #0: The support for this board weren't valid yet. [ 1974.305741] em28xx #0: Please send a report of having this working [ 1974.305743] em28xx #0: not to V4L mailing list (and/or to other addresses) [ 1974.305744] [ 1974.668482] saa7115 0-0021: saa7114 found (1f7114d0e000000) @ 0x42 (em28xx #0) [ 1976.877018] tuner 0-0043: chip found @ 0x86 (em28xx #0) [ 1976.877086] tda9887 0-0043: creating new instance [ 1976.877088] tda9887 0-0043: tda988[5/6/7] found [ 1976.889852] tuner 0-0061: chip found @ 0xc2 (em28xx #0) [ 1976.890639] tuner-simple 0-0061: creating new instance [ 1976.890642] tuner-simple 0-0061: type set to 38 (Philips PAL/SECAM multi (FM1216ME MK3)) [ 1976.960196] em28xx #0: Config register raw data: 0x14 [ 1976.984194] em28xx #0: AC97 vendor ID = 0xffffffff [ 1976.996191] em28xx #0: AC97 features = 0x6a90 [ 1976.996192] em28xx #0: Empia 202 AC97 audio processor detected [ 1977.540028] em28xx #0: v4l2 driver version 0.1.2 [ 1978.372078] em28xx #0: V4L2 video device registered as /dev/video0 v4l2-ctl --all Driver Info: Driver name : em28xx Card type : Leadtek Winfast USB II Deluxe Bus info : usb-0000:00:13.3-8.4 Driver version: 258 Capabilities : 0x05030041 Video Capture Sliced VBI Capture Tuner Audio Read/Write Streaming Format Video Capture: Width/Height : 720/576 Pixel Format : 'YUYV' Field : Interlaced Bytes per Line: 1440 Size Image : 829440 Colorspace : Broadcast NTSC/PAL (SMPTE170M/ITU601) Format VBI Capture: Sampling Rate : 13500000 Hz Offset : 0 samples (0 secs after leading edge) Samples per Line: 720 Sample Format : GREY Start 1st Field : 10 Count 1st Field : 12 Start 2nd Field : 273 Count 2nd Field : 12 Crop Capability Video Capture: Bounds : Left 0, Top 0, Width 720, Height 576 Default : Left 0, Top 0, Width 720, Height 576 Pixel Aspect: 54/59 Video input : 0 (Television) Audio input : 0 (Television) Frequency: 9076 (567.250000 MHz) Video Standard = 0x000000ff PAL-B/B1/G/H/I/D/D1/K Tuner: Name : Tuner Capabilities : 62.5 kHz Frequency range : 0.0 MHz - 0.0 MHz Signal strength/AFC : 0%/0 Current audio mode : mono Available subchannels: lsusb -s 001:009 -v Bus 001 Device 009: ID 0413:6023 Leadtek Research, Inc. EMP Audio Device Device Descriptor: bLength 18 bDescriptorType 1 bcdUSB 2.00 bDeviceClass 0 (Defined at Interface level) bDeviceSubClass 0 bDeviceProtocol 0 bMaxPacketSize0 64 idVendor 0x0413 Leadtek Research, Inc. idProduct 0x6023 EMP Audio Device bcdDevice 1.00 iManufacturer 2 iProduct 1 iSerial 0 bNumConfigurations 1 Configuration Descriptor: bLength 9 bDescriptorType 2 wTotalLength 521 bNumInterfaces 3 bConfigurationValue 1 iConfiguration 0 bmAttributes 0xc0 Self Powered MaxPower 500mA Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 0 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0000 1x 0 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 1 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0400 1x 1024 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 2 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0ad4 2x 724 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 3 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0c00 2x 1024 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 4 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x1300 3x 768 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 5 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x135c 3x 860 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 6 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x13c4 3x 964 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 0 bAlternateSetting 7 bNumEndpoints 3 bInterfaceClass 255 Vendor Specific Class bInterfaceSubClass 0 bInterfaceProtocol 255 iInterface 0 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x81 EP 1 IN bmAttributes 3 Transfer Type Interrupt Synch Type None Usage Type Data wMaxPacketSize 0x0001 1x 1 bytes bInterval 11 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x82 EP 2 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x1400 3x 1024 bytes bInterval 1 Endpoint Descriptor: bLength 7 bDescriptorType 5 bEndpointAddress 0x84 EP 4 IN bmAttributes 2 Transfer Type Bulk Synch Type None Usage Type Data wMaxPacketSize 0x0200 1x 512 bytes bInterval 1 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 1 bAlternateSetting 0 bNumEndpoints 0 bInterfaceClass 1 Audio bInterfaceSubClass 1 Control Device bInterfaceProtocol 0 iInterface 0 AudioControl Interface Descriptor: bLength 9 bDescriptorType 36 bDescriptorSubtype 1 (HEADER) bcdADC 1.00 wTotalLength 39 bInCollection 1 baInterfaceNr( 0) 2 AudioControl Interface Descriptor: bLength 12 bDescriptorType 36 bDescriptorSubtype 2 (INPUT_TERMINAL) bTerminalID 1 wTerminalType 0x0603 Line Connector bAssocTerminal 0 bNrChannels 2 wChannelConfig 0x0003 Left Front (L) Right Front (R) iChannelNames 0 iTerminal 0 AudioControl Interface Descriptor: bLength 9 bDescriptorType 36 bDescriptorSubtype 6 (FEATURE_UNIT) bUnitID 2 bSourceID 1 bControlSize 1 bmaControls( 0) 0x03 Mute Volume bmaControls( 1) 0x00 iFeature 0 AudioControl Interface Descriptor: bLength 9 bDescriptorType 36 bDescriptorSubtype 3 (OUTPUT_TERMINAL) bTerminalID 3 wTerminalType 0x0101 USB Streaming bAssocTerminal 0 bSourceID 2 iTerminal 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 0 bNumEndpoints 0 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 1 bNumEndpoints 1 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 AudioStreaming Interface Descriptor: bLength 7 bDescriptorType 36 bDescriptorSubtype 1 (AS_GENERAL) bTerminalLink 3 bDelay 1 frames wFormatTag 1 PCM AudioStreaming Interface Descriptor: bLength 11 bDescriptorType 36 bDescriptorSubtype 2 (FORMAT_TYPE) bFormatType 1 (FORMAT_TYPE_I) bNrChannels 2 bSubframeSize 2 bBitResolution 16 bSamFreqType 1 Discrete tSamFreq[ 0] 48000 Endpoint Descriptor: bLength 9 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x001c 1x 28 bytes bInterval 1 bRefresh 0 bSynchAddress 0 AudioControl Endpoint Descriptor: bLength 7 bDescriptorType 37 bDescriptorSubtype 1 (EP_GENERAL) bmAttributes 0x00 bLockDelayUnits 0 Undefined wLockDelay 0 Undefined Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 2 bNumEndpoints 1 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 AudioStreaming Interface Descriptor: bLength 7 bDescriptorType 36 bDescriptorSubtype 1 (AS_GENERAL) bTerminalLink 3 bDelay 1 frames wFormatTag 1 PCM AudioStreaming Interface Descriptor: bLength 11 bDescriptorType 36 bDescriptorSubtype 2 (FORMAT_TYPE) bFormatType 1 (FORMAT_TYPE_I) bNrChannels 2 bSubframeSize 2 bBitResolution 16 bSamFreqType 1 Discrete tSamFreq[ 0] 44100 Endpoint Descriptor: bLength 9 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0018 1x 24 bytes bInterval 1 bRefresh 0 bSynchAddress 0 AudioControl Endpoint Descriptor: bLength 7 bDescriptorType 37 bDescriptorSubtype 1 (EP_GENERAL) bmAttributes 0x00 bLockDelayUnits 0 Undefined wLockDelay 0 Undefined Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 3 bNumEndpoints 1 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 AudioStreaming Interface Descriptor: bLength 7 bDescriptorType 36 bDescriptorSubtype 1 (AS_GENERAL) bTerminalLink 3 bDelay 1 frames wFormatTag 1 PCM AudioStreaming Interface Descriptor: bLength 11 bDescriptorType 36 bDescriptorSubtype 2 (FORMAT_TYPE) bFormatType 1 (FORMAT_TYPE_I) bNrChannels 2 bSubframeSize 2 bBitResolution 16 bSamFreqType 1 Discrete tSamFreq[ 0] 32000 Endpoint Descriptor: bLength 9 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0014 1x 20 bytes bInterval 1 bRefresh 0 bSynchAddress 0 AudioControl Endpoint Descriptor: bLength 7 bDescriptorType 37 bDescriptorSubtype 1 (EP_GENERAL) bmAttributes 0x00 bLockDelayUnits 0 Undefined wLockDelay 0 Undefined Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 4 bNumEndpoints 1 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 AudioStreaming Interface Descriptor: bLength 7 bDescriptorType 36 bDescriptorSubtype 1 (AS_GENERAL) bTerminalLink 3 bDelay 1 frames wFormatTag 1 PCM AudioStreaming Interface Descriptor: bLength 11 bDescriptorType 36 bDescriptorSubtype 2 (FORMAT_TYPE) bFormatType 1 (FORMAT_TYPE_I) bNrChannels 2 bSubframeSize 2 bBitResolution 16 bSamFreqType 1 Discrete tSamFreq[ 0] 22050 Endpoint Descriptor: bLength 9 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x000c 1x 12 bytes bInterval 1 bRefresh 0 bSynchAddress 0 AudioControl Endpoint Descriptor: bLength 7 bDescriptorType 37 bDescriptorSubtype 1 (EP_GENERAL) bmAttributes 0x00 bLockDelayUnits 0 Undefined wLockDelay 0 Undefined Interface Descriptor: bLength 9 bDescriptorType 4 bInterfaceNumber 2 bAlternateSetting 5 bNumEndpoints 1 bInterfaceClass 1 Audio bInterfaceSubClass 2 Streaming bInterfaceProtocol 0 iInterface 0 AudioStreaming Interface Descriptor: bLength 7 bDescriptorType 36 bDescriptorSubtype 1 (AS_GENERAL) bTerminalLink 3 bDelay 1 frames wFormatTag 1 PCM AudioStreaming Interface Descriptor: bLength 11 bDescriptorType 36 bDescriptorSubtype 2 (FORMAT_TYPE) bFormatType 1 (FORMAT_TYPE_I) bNrChannels 2 bSubframeSize 2 bBitResolution 16 bSamFreqType 1 Discrete tSamFreq[ 0] 8000 Endpoint Descriptor: bLength 9 bDescriptorType 5 bEndpointAddress 0x83 EP 3 IN bmAttributes 1 Transfer Type Isochronous Synch Type None Usage Type Data wMaxPacketSize 0x0008 1x 8 bytes bInterval 1 bRefresh 0 bSynchAddress 0 AudioControl Endpoint Descriptor: bLength 7 bDescriptorType 37 bDescriptorSubtype 1 (EP_GENERAL) bmAttributes 0x00 bLockDelayUnits 0 Undefined wLockDelay 0 Undefined can't get device qualifier: Operation not permitted can't get debug descriptor: Operation not permitted cannot read device status, Operation not permitted (1) lsmod Module Size Used by binfmt_misc 8356 1 ppdev 6688 0 tuner_simple 14544 1 tuner_types 14748 1 tuner_simple tda9887 10432 1 tda8290 12768 0 tuner 21768 2 snd_emu10k1_synth 6140 0 snd_emux_synth 32860 1 snd_emu10k1_synth snd_seq_virmidi 5628 1 snd_emux_synth snd_seq_midi_emul 6332 1 snd_emux_synth snd_emu10k1 135136 4 snd_emu10k1_synth snd_ac97_codec 101216 1 snd_emu10k1 ac97_bus 1532 1 snd_ac97_codec snd_util_mem 4156 2 snd_emux_synth,snd_emu10k1 snd_seq_dummy 2656 0 saa7115 14288 1 snd_usb_audio 84224 1 snd_pcm_oss 37920 0 snd_mixer_oss 16028 1 snd_pcm_oss snd_pcm 75296 5 snd_emu10k1,snd_ac97_codec,snd_usb_audio,snd_pcm_oss snd_page_alloc 9156 2 snd_emu10k1,snd_pcm snd_usb_lib 16284 1 snd_usb_audio snd_seq_oss 28576 0 snd_seq_midi 6432 0 snd_rawmidi 22208 4 snd_seq_virmidi,snd_emu10k1,snd_usb_lib,snd_seq_midi snd_seq_midi_event 6940 3 snd_seq_virmidi,snd_seq_oss,snd_seq_midi snd_hwdep 7200 3 snd_emux_synth,snd_emu10k1,snd_usb_audio snd_seq 50224 9 snd_emux_synth,snd_seq_virmidi,snd_seq_midi_emul,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event em28xx 88464 0 v4l2_common 17052 3 tuner,saa7115,em28xx snd_timer 22276 3 snd_emu10k1,snd_pcm,snd_seq snd_seq_device 6920 8 snd_emu10k1_synth,snd_emux_synth,snd_emu10k1,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq videodev 36864 4 tuner,saa7115,em28xx,v4l2_common v4l1_compat 14336 1 videodev ir_common 42848 1 em28xx iptable_filter 3100 0 snd 59204 21 snd_emux_synth,snd_seq_virmidi,snd_emu10k1,snd_ac97_codec,snd_usb_audio,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_hwdep,snd_seq,snd_timer,snd_seq_device videobuf_vmalloc 6496 1 em28xx ip_tables 11692 1 iptable_filter i2c_ali15x3 6336 0 amd64_agp 9796 1 lp 8964 0 videobuf_core 17728 2 em28xx,videobuf_vmalloc emu10k1_gp 2492 0 soundcore 7264 1 snd x_tables 16544 1 ip_tables i2c_ali1563 6368 0 i2c_ali1535 5792 0 ali_agp 5148 0 parport 35340 2 ppdev,lp uli526x 15564 0 tveeprom 11872 1 em28xx shpchp 32272 0 gameport 11368 2 emu10k1_gp k8temp 4188 0 nvidia 9586376 36 agpgart 34988 3 amd64_agp,ali_agp,nvidia psmouse 56180 0 serio_raw 5280 0 usb_storage 52544 1 ohci1394 29900 0 ieee1394 86596 1 ohci1394
003834: OUT: 000000 ms 038036 ms c0 00 00 00 05 00 01 00 <<< 00 003835: OUT: 000001 ms 038036 ms 40 02 00 00 42 00 04 00 >>> 0e 81 2a 06 003836: OUT: 000000 ms 038037 ms c0 00 00 00 05 00 01 00 <<< 00 003837: OUT: 000000 ms 038037 ms 40 02 00 00 42 00 02 00 >>> 02 c5 Switching to Composite (windows) 003838: OUT: 000001 ms 038037 ms c0 00 00 00 05 00 01 00 <<< 00 003839: OUT: 000000 ms 038038 ms 40 00 00 00 21 00 01 00 >>> 14 003840: OUT: 000000 ms 038038 ms 40 00 00 00 20 00 01 00 >>> 10 003841: OUT: 000001 ms 038038 ms 40 02 00 00 42 00 02 00 >>> 0d 00 003842: OUT: 000000 ms 038039 ms c0 00 00 00 05 00 01 00 <<< 00 003843: OUT: 000000 ms 038039 ms 40 00 00 00 22 00 01 00 >>> 10 003844: OUT: 000000 ms 038039 ms 40 00 00 00 14 00 01 00 >>> 32 003845: OUT: 000001 ms 038039 ms 40 00 00 00 25 00 01 00 >>> 02 003846: OUT: 000000 ms 038040 ms c0 00 00 00 26 00 01 00 <<< 00 003847: OUT: 000000 ms 038040 ms 40 00 00 00 26 00 01 00 >>> 00 003848: OUT: 000001 ms 038040 ms 40 02 00 00 30 00 02 00 >>> 03 c0 003849: OUT: 000000 ms 038041 ms c0 00 00 00 05 00 01 00 <<< 00 003850: OUT: 000001 ms 038041 ms 40 02 00 00 30 00 02 00 >>> 0b 00 003851: OUT: 000000 ms 038042 ms c0 00 00 00 05 00 01 00 <<< 00 003852: OUT: 000000 ms 038042 ms 40 02 00 00 30 00 02 00 >>> 04 00 003853: OUT: 000001 ms 038042 ms c0 00 00 00 05 00 01 00 <<< 00 003854: OUT: 000000 ms 038043 ms 40 02 00 00 30 00 02 00 >>> 0c 00 003855: OUT: 000000 ms 038043 ms c0 00 00 00 05 00 01 00 <<< 00 003856: OUT: 000000 ms 038043 ms 40 02 00 00 30 00 02 00 >>> 02 00 003857: OUT: 000001 ms 038043 ms c0 00 00 00 05 00 01 00 <<< 00 003858: OUT: 000000 ms 038044 ms 40 02 00 00 30 00 02 00 >>> 0a 00 003859: OUT: 000027 ms 038044 ms c0 00 00 00 05 00 01 00 <<< 00 003861: OUT: 000000 ms 038045 ms 40 02 00 00 30 00 02 00 >>> 12 00 003862: OUT: 000000 ms 038045 ms c0 00 00 00 05 00 01 00 <<< 00 003863: OUT: 000001 ms 038045 ms 40 02 00 00 30 00 02 00 >>> 13 00 003864: OUT: 000000 ms 038046 ms c0 00 00 00 05 00 01 00 <<< 00 003865: OUT: 000000 ms 038046 ms 40 02 00 00 30 00 02 00 >>> 14 00 003866: OUT: 000001 ms 038046 ms c0 00 00 00 05 00 01 00 <<< 00 003867: OUT: 000000 ms 038047 ms 40 02 00 00 30 00 02 00 >>> 01 0c 003868: OUT: 000000 ms 038047 ms c0 00 00 00 05 00 01 00 <<< 00 003869: OUT: 000000 ms 038047 ms 40 02 00 00 30 00 02 00 >>> 09 00 003870: OUT: 000001 ms 038047 ms c0 00 00 00 05 00 01 00 <<< 00 003871: OUT: 000000 ms 038048 ms 40 02 00 00 3e 00 02 00 >>> 03 ff 003872: OUT: 000000 ms 038048 ms c0 00 00 00 05 00 01 00 <<< 00 003873: OUT: 000000 ms 038048 ms 40 02 00 00 3e 00 02 00 >>> 0b 60 003874: OUT: 000001 ms 038048 ms c0 00 00 00 05 00 01 00 <<< 00 003875: OUT: 000000 ms 038049 ms 40 02 00 00 3e 00 02 00 >>> 04 00 003876: OUT: 000000 ms 038049 ms c0 00 00 00 05 00 01 00 <<< 00 003877: OUT: 000001 ms 038049 ms 40 02 00 00 3e 00 02 00 >>> 0c 00 003878: OUT: 000000 ms 038050 ms c0 00 00 00 05 00 01 00 <<< 00 003879: OUT: 000000 ms 038050 ms 40 02 00 00 3e 00 02 00 >>> 02 00 003880: OUT: 000001 ms 038050 ms c0 00 00 00 05 00 01 00 <<< 00 003881: OUT: 000000 ms 038051 ms 40 02 00 00 3e 00 02 00 >>> 0a 00 003882: OUT: 000000 ms 038051 ms c0 00 00 00 05 00 01 00 <<< 00 003883: OUT: 000114 ms 038051 ms 40 02 00 00 3e 00 02 00 >>> 12 00 003885: OUT: 000001 ms 038053 ms c0 00 00 00 05 00 01 00 <<< 00 003886: OUT: 000000 ms 038054 ms 40 02 00 00 3e 00 02 00 >>> 13 00 003887: OUT: 000000 ms 038054 ms c0 00 00 00 05 00 01 00 <<< 00 003888: OUT: 000000 ms 038054 ms 40 02 00 00 3e 00 02 00 >>> 14 00 003889: OUT: 000001 ms 038054 ms c0 00 00 00 05 00 01 00 <<< 00 003890: OUT: 000000 ms 038055 ms 40 02 00 00 3e 00 02 00 >>> 09 02 003891: OUT: 000000 ms 038055 ms c0 00 00 00 05 00 01 00 <<< 00 003892: OUT: 000001 ms 038055 ms c0 00 00 00 27 00 01 00 <<< 34 003893: OUT: 000000 ms 038056 ms 40 00 00 00 27 00 01 00 >>> 34 003894: OUT: 000000 ms 038056 ms c0 00 00 00 0c 00 01 00 <<< 10 003895: OUT: 000000 ms 038056 ms 40 00 00 00 0c 00 01 00 >>> 10 003896: OUT: 000001 ms 038056 ms c0 00 00 00 12 00 01 00 <<< 27 003897: OUT: 000000 ms 038057 ms 40 00 00 00 12 00 01 00 >>> 67 003898: OUT: 000000 ms 038057 ms 40 00 00 00 21 00 01 00 >>> 08 003899: OUT: 000000 ms 038057 ms 40 00 00 00 20 00 01 00 >>> 10 003900: OUT: 000001 ms 038057 ms 40 02 00 00 42 00 02 00 >>> 0d 00 003901: OUT: 000000 ms 038058 ms c0 00 00 00 05 00 01 00 <<< 00 003902: OUT: 000001 ms 038058 ms 40 00 00 00 22 00 01 00 >>> 10 003903: OUT: 000000 ms 038059 ms 40 00 00 00 14 00 01 00 >>> 32 003904: OUT: 000000 ms 038059 ms 40 00 00 00 25 00 01 00 >>> 02 003905: OUT: 000000 ms 038059 ms c0 00 00 00 0f 00 01 00 <<< 07 003906: OUT: 000200 ms 038059 ms 40 00 00 00 0f 00 01 00 >>> 07 003908: OUT: 000000 ms 038061 ms c0 00 00 00 43 00 01 00 <<< 00 003909: OUT: 000000 ms 038061 ms 40 00 00 00 40 00 02 00 >>> 08 88 003910: OUT: 000001 ms 038061 ms 40 00 00 00 42 00 01 00 >>> 0e 003911: OUT: 000000 ms 038062 ms c0 00 00 00 43 00 01 00 <<< 00 003912: OUT: 000000 ms 038062 ms 40 00 00 00 40 00 02 00 >>> 08 08 003913: OUT: 000000 ms 038062 ms 40 00 00 00 42 00 01 00 >>> 10 003914: OUT: 000000 ms 038062 ms c0 00 00 00 43 00 01 00 <<< 00 003915: OUT: 000001 ms 038062 ms 40 00 00 00 40 00 02 00 >>> 08 88 003916: OUT: 000000 ms 038063 ms 40 00 00 00 42 00 01 00 >>> 14 003917: OUT: 000000 ms 038063 ms c0 00 00 00 43 00 01 00 <<< 00 003918: OUT: 000000 ms 038063 ms 40 00 00 00 40 00 02 00 >>> 08 88 003919: OUT: 000000 ms 038063 ms 40 00 00 00 42 00 01 00 >>> 16 003920: OUT: 000000 ms 038063 ms c0 00 00 00 43 00 01 00 <<< 00 003921: OUT: 000000 ms 038063 ms 40 00 00 00 40 00 02 00 >>> 00 00 003922: OUT: 000001 ms 038063 ms 40 00 00 00 42 00 01 00 >>> 02 003923: OUT: 000000 ms 038064 ms 40 03 00 00 42 00 01 00 >>> 1f 003924: OUT: 000001 ms 038064 ms c0 00 00 00 05 00 01 00 <<< 00 003925: OUT: 000000 ms 038065 ms c0 02 00 00 42 00 01 00 <<< 40 003926: OUT: 000007 ms 038065 ms c0 00 00 00 05 00 01 00 <<< 00 003927: OUT: 000187 ms 038072 ms 40 00 00 00 08 00 01 00 >>> 04 003930: OUT: 000001 ms 038260 ms 40 03 00 00 3e 00 01 00 >>> 10 003931: OUT: 000001 ms 038261 ms c0 00 00 00 05 00 01 00 <<< 00 003932: OUT: 000001 ms 038262 ms c0 02 00 00 3e 00 01 00 <<< 00 003933: OUT: 000000 ms 038263 ms c0 00 00 00 05 00 01 00 <<< 00 003937: OUT: 000001 ms 038263 ms 40 03 00 00 3e 00 01 00 >>> 10 003938: OUT: 000000 ms 038264 ms c0 00 00 00 05 00 01 00 <<< 00 003939: OUT: 000000 ms 038264 ms c0 02 00 00 3e 00 01 00 <<< 00 003940: OUT: 000001 ms 038264 ms c0 00 00 00 05 00 01 00 <<< 00 003941: OUT: 000000 ms 038265 ms 40 03 00 00 3e 00 01 00 >>> 10 003942: OUT: 000000 ms 038265 ms c0 00 00 00 05 00 01 00 <<< 00 003946: OUT: 000001 ms 038266 ms c0 02 00 00 3e 00 01 00 <<< 00 003947: OUT: 000001 ms 038267 ms c0 00 00 00 05 00 01 00 <<< 00 003986: OUT: -00001 ms 038516 ms 40 03 00 00 3e 00 01 00 >>> 10 003989: OUT: 000000 ms 038516 ms c0 00 00 00 05 00 01 00 <<< 00 003990: OUT: 000001 ms 038516 ms c0 02 00 00 3e 00 01 00 <<< 00 003991: OUT: 000000 ms 038517 ms c0 00 00 00 05 00 01 00 <<< 00 003993: OUT: 000000 ms 038518 ms 40 03 00 00 3e 00 01 00 >>> 10 003996: OUT: 000000 ms 038519 ms c0 00 00 00 05 00 01 00 <<< 00 003997: OUT: 000000 ms 038519 ms c0 02 00 00 3e 00 01 00 <<< 00 003998: OUT: 000001 ms 038519 ms c0 00 00 00 05 00 01 00 <<< 00 004005: OUT: 000207 ms 038526 ms 40 03 00 00 3e 00 01 00 >>> 10 004007: OUT: 000001 ms 038526 ms c0 00 00 00 05 00 01 00 <<< 00 004008: OUT: 000000 ms 038527 ms c0 02 00 00 3e 00 01 00 <<< 00 004009: OUT: 000207 ms 038527 ms c0 00 00 00 05 00 01 00 <<< 00 004036: OUT: 000008 ms 038759 ms 40 03 00 00 3e 00 01 00 >>> 10 004038: OUT: 000000 ms 038760 ms c0 00 00 00 05 00 01 00 <<< 00 004039: OUT: 000000 ms 038760 ms c0 02 00 00 3e 00 01 00 <<< 00 004040: OUT: 000070 ms 038760 ms c0 00 00 00 05 00 01 00 <<< 00 004043: OUT: 000007 ms 038761 ms 40 03 00 00 3e 00 01 00 >>> 10 004044: OUT: 000000 ms 038768 ms c0 00 00 00 05 00 01 00 <<< 00 004045: OUT: 000242 ms 038768 ms c0 02 00 00 3e 00 01 00 <<< 00 004047: OUT: 000242 ms 038769 ms c0 00 00 00 05 00 01 00 <<< 00 004050: OUT: 000000 ms 039014 ms 40 03 00 00 3e 00 01 00 >>> 10 004054: OUT: 000000 ms 039016 ms c0 00 00 00 05 00 01 00 <<< 00 004058: OUT: 000000 ms 039018 ms c0 02 00 00 3e 00 01 00 <<< 00 004059: OUT: 000001 ms 039018 ms c0 00 00 00 05 00 01 00 <<< 00 004060: OUT: 000000 ms 039019 ms 40 03 00 00 3e 00 01 00 >>> 10 004064: OUT: 000001 ms 039020 ms c0 00 00 00 05 00 01 00 <<< 00 004065: OUT: 000000 ms 039021 ms c0 02 00 00 3e 00 01 00 <<< 00 004066: OUT: 000001 ms 039021 ms c0 00 00 00 05 00 01 00 <<< 00 004070: OUT: 000000 ms 039024 ms 40 03 00 00 3e 00 01 00 >>> 10 004071: OUT: 000001 ms 039024 ms c0 00 00 00 05 00 01 00 <<< 00 004075: OUT: 000000 ms 039027 ms c0 02 00 00 3e 00 01 00 <<< 00 004076: OUT: 000001 ms 039027 ms c0 00 00 00 05 00 01 00 <<< 00 004097: OUT: 000000 ms 039276 ms 40 03 00 00 3e 00 01 00 >>> 10 004099: OUT: 000001 ms 039276 ms c0 00 00 00 05 00 01 00 <<< 00 004100: OUT: 000000 ms 039277 ms c0 02 00 00 3e 00 01 00 <<< 00 004101: OUT: 000000 ms 039277 ms c0 00 00 00 05 00 01 00 <<< 00 004104: OUT: 000000 ms 039278 ms 40 03 00 00 3e 00 01 00 >>> 10 004105: OUT: 000000 ms 039278 ms c0 00 00 00 05 00 01 00 <<< 00 004106: OUT: 000000 ms 039278 ms c0 02 00 00 3e 00 01 00 <<< 00 004107: OUT: 000001 ms 039278 ms c0 00 00 00 05 00 01 00 <<< 00 004109: OUT: 000001 ms 039279 ms 40 03 00 00 3e 00 01 00 >>> 10 004110: OUT: 000000 ms 039280 ms c0 00 00 00 05 00 01 00 <<< 00 004113: OUT: 000000 ms 039282 ms c0 02 00 00 3e 00 01 00 <<< 00 004126: OUT: 000001 ms 039293 ms c0 00 00 00 05 00 01 00 <<< 00 004144: OUT: 000000 ms 039466 ms c0 00 00 00 0f 00 01 00 <<< 07 004145: OUT: 000002 ms 039466 ms 40 00 00 00 0f 00 01 00 >>> 07 004149: OUT: 000000 ms 039468 ms c0 00 00 00 43 00 01 00 <<< 00 004150: OUT: 000000 ms 039468 ms 40 00 00 00 40 00 02 00 >>> 00 80 004151: OUT: 000001 ms 039468 ms 40 00 00 00 42 00 01 00 >>> 02 004152: OUT: 000000 ms 039469 ms c0 00 00 00 12 00 01 00 <<< 67 004153: OUT: 000002 ms 039469 ms 40 00 00 00 12 00 01 00 >>> 27 004171: OUT: 000000 ms 039502 ms c0 00 00 00 0c 00 01 00 <<< 10 004172: OUT: 000000 ms 039502 ms 40 00 00 00 0c 00 01 00 >>> 00 004173: OUT: 000027 ms 039502 ms c0 00 00 00 00 00 01 00 <<< 14 004178: OUT: 000000 ms 039534 ms 40 03 00 00 3e 00 01 00 >>> 10 004179: OUT: 000001 ms 039534 ms c0 00 00 00 05 00 01 00 <<< 00 004180: OUT: 000000 ms 039535 ms c0 02 00 00 3e 00 01 00 <<< 00 004181: OUT: 000001 ms 039535 ms c0 00 00 00 05 00 01 00 <<< 00 004182: OUT: 000000 ms 039536 ms 40 03 00 00 3e 00 01 00 >>> 10 004183: OUT: 000001 ms 039536 ms c0 00 00 00 05 00 01 00 <<< 00 004184: OUT: 000000 ms 039537 ms c0 02 00 00 3e 00 01 00 <<< 00 004185: OUT: 000001 ms 039537 ms c0 00 00 00 05 00 01 00 <<< 00 004186: OUT: 000000 ms 039538 ms 40 03 00 00 3e 00 01 00 >>> 10 004187: OUT: 000001 ms 039538 ms c0 00 00 00 05 00 01 00 <<< 00 004188: OUT: 000000 ms 039539 ms c0 02 00 00 3e 00 01 00 <<< 00 004189: OUT: 000023 ms 039539 ms c0 00 00 00 05 00 01 00 <<< 00 004192: OUT: 000000 ms 039553 ms c0 00 00 00 00 00 01 00 <<< 14 004193: OUT: 000000 ms 039553 ms 40 00 00 00 06 00 01 00 >>> 40 004194: OUT: 000000 ms 039553 ms 40 00 00 00 15 00 01 00 >>> 20 004195: OUT: 000001 ms 039553 ms 40 00 00 00 16 00 01 00 >>> 20 004196: OUT: 000000 ms 039554 ms 40 00 00 00 17 00 01 00 >>> 20 004197: OUT: 000000 ms 039554 ms 40 00 00 00 18 00 01 00 >>> 00 004198: OUT: 000000 ms 039554 ms 40 00 00 00 19 00 01 00 >>> 00 004199: OUT: 000000 ms 039554 ms 40 00 00 00 1a 00 01 00 >>> 00 004200: OUT: 000001 ms 039554 ms 40 00 00 00 23 00 01 00 >>> 00 004201: OUT: 000000 ms 039555 ms 40 00 00 00 24 00 01 00 >>> 00 004202: OUT: 000000 ms 039555 ms 40 00 00 00 26 00 01 00 >>> 00 004203: OUT: 000000 ms 039555 ms 40 00 00 00 13 00 01 00 >>> 08 004204: OUT: 000000 ms 039555 ms 40 00 00 00 12 00 01 00 >>> 27 004205: OUT: 000001 ms 039555 ms 40 00 00 00 0c 00 01 00 >>> 10 004206: OUT: 000000 ms 039556 ms 40 00 00 00 27 00 01 00 >>> 34 004207: OUT: 000000 ms 039556 ms 40 00 00 00 10 00 01 00 >>> 40 004208: OUT: 000000 ms 039556 ms 40 00 00 00 11 00 01 00 >>> 11 004209: OUT: 000000 ms 039556 ms 40 00 00 00 28 00 01 00 >>> 01 004210: OUT: 000022 ms 039556 ms 40 00 00 00 29 00 01 00 >>> b3 004212: OUT: 000001 ms 039556 ms 40 00 00 00 2a 00 01 00 >>> 01 004213: OUT: 000000 ms 039557 ms 40 00 00 00 2b 00 01 00 >>> 47 004214: OUT: 000000 ms 039557 ms 40 00 00 00 1c 00 01 00 >>> 00 004215: OUT: 000000 ms 039557 ms 40 00 00 00 1d 00 01 00 >>> 00 004216: OUT: 000000 ms 039557 ms 40 00 00 00 1e 00 01 00 >>> b4 004217: OUT: 000000 ms 039557 ms 40 00 00 00 1f 00 01 00 >>> 48 004218: OUT: 000001 ms 039557 ms c0 00 00 00 1b 00 01 00 <<< 00 004219: OUT: 000000 ms 039558 ms 40 00 00 00 1b 00 01 00 >>> 00 004220: OUT: 000000 ms 039558 ms c0 00 00 00 1b 00 01 00 <<< 00 004221: OUT: 000001 ms 039558 ms 40 00 00 00 1b 00 01 00 >>> 00 004222: OUT: 000000 ms 039559 ms 40 02 00 00 42 00 02 00 >>> 01 08 004223: OUT: 000001 ms 039559 ms c0 00 00 00 05 00 01 00 <<< 00 004224: OUT: 000000 ms 039560 ms 40 02 00 00 42 00 04 00 >>> 03 30 90 90 004225: OUT: 000000 ms 039560 ms c0 00 00 00 05 00 01 00 <<< 00 004226: OUT: 000001 ms 039560 ms 40 02 00 00 42 00 04 00 >>> 06 eb e0 88 004227: OUT: 000000 ms 039561 ms c0 00 00 00 05 00 01 00 <<< 00 004228: OUT: 000000 ms 039561 ms 40 02 00 00 42 00 04 00 >>> 0a 80 44 40 004229: OUT: 000001 ms 039561 ms c0 00 00 00 05 00 01 00 <<< 00 004230: OUT: 000000 ms 039562 ms 40 02 00 00 42 00 04 00 >>> 11 00 c8 80 004231: OUT: 000001 ms 039562 ms c0 00 00 00 05 00 01 00 <<< 00 004232: OUT: 000000 ms 039563 ms 40 02 00 00 42 00 04 00 >>> 14 00 11 01 004233: OUT: 000001 ms 039563 ms c0 00 00 00 05 00 01 00 <<< 00 004234: OUT: 000022 ms 039564 ms 40 02 00 00 42 00 04 00 >>> 17 42 40 80 004236: OUT: 000001 ms 039564 ms c0 00 00 00 05 00 01 00 <<< 00 004237: OUT: 000001 ms 039565 ms 40 02 00 00 42 00 02 00 >>> 40 00 004238: OUT: 000000 ms 039566 ms c0 00 00 00 05 00 01 00 <<< 00 004239: OUT: 000001 ms 039566 ms 40 02 00 00 42 00 04 00 >>> 41 ff ff ff 004240: OUT: 000000 ms 039567 ms c0 00 00 00 05 00 01 00 <<< 00 004241: OUT: 000000 ms 039567 ms 40 02 00 00 42 00 04 00 >>> 44 ff ff ff 004242: OUT: 000001 ms 039567 ms c0 00 00 00 05 00 01 00 <<< 00 004243: OUT: 000000 ms 039568 ms 40 02 00 00 42 00 04 00 >>> 47 ff ff ff 004244: OUT: 000001 ms 039568 ms c0 00 00 00 05 00 01 00 <<< 00 004245: OUT: 000000 ms 039569 ms 40 02 00 00 42 00 04 00 >>> 4a ff ff ff 004246: OUT: 000001 ms 039569 ms c0 00 00 00 05 00 01 00 <<< 00 004247: OUT: 000000 ms 039570 ms 40 02 00 00 42 00 04 00 >>> 4d ff ff ff 004248: OUT: 000001 ms 039570 ms c0 00 00 00 05 00 01 00 <<< 00 004249: OUT: 000000 ms 039571 ms 40 02 00 00 42 00 04 00 >>> 50 ff ff ff 004250: OUT: 000001 ms 039571 ms c0 00 00 00 05 00 01 00 <<< 00 004251: OUT: 000000 ms 039572 ms 40 02 00 00 42 00 04 00 >>> 53 ff 5f ff 004252: OUT: 000022 ms 039572 ms c0 00 00 00 05 00 01 00 <<< 00 004254: OUT: 000001 ms 039572 ms 40 02 00 00 42 00 03 00 >>> 56 ff ff 004255: OUT: 000000 ms 039573 ms c0 00 00 00 05 00 01 00 <<< 00 004256: OUT: 000000 ms 039573 ms 40 02 00 00 42 00 03 00 >>> 58 00 47 004257: OUT: 000001 ms 039573 ms c0 00 00 00 05 00 01 00 <<< 00 004258: OUT: 000000 ms 039574 ms 40 02 00 00 42 00 03 00 >>> 5d 3e 00 004259: OUT: 000000 ms 039574 ms c0 00 00 00 05 00 01 00 <<< 00 004260: OUT: 000001 ms 039574 ms 40 02 00 00 42 00 02 00 >>> 80 1c 004261: OUT: 000000 ms 039575 ms c0 00 00 00 05 00 01 00 <<< 00 004262: OUT: 000001 ms 039575 ms 40 02 00 00 42 00 04 00 >>> 83 01 a5 10 004263: OUT: 000000 ms 039576 ms c0 00 00 00 05 00 01 00 <<< 00 004264: OUT: 000000 ms 039576 ms 40 02 00 00 42 00 04 00 >>> 86 45 41 f0 004265: OUT: 000001 ms 039576 ms c0 00 00 00 05 00 01 00 <<< 00 004266: OUT: 000000 ms 039577 ms 40 02 00 00 42 00 02 00 >>> 90 00 004267: OUT: 000001 ms 039577 ms c0 00 00 00 05 00 01 00 <<< 00 004268: OUT: 000000 ms 039578 ms 40 02 00 00 42 00 04 00 >>> 91 08 00 80 004269: OUT: 000000 ms 039578 ms c0 00 00 00 05 00 01 00 <<< 00 004270: OUT: 000000 ms 039578 ms 40 02 00 00 42 00 03 00 >>> 94 08 00 004271: OUT: 000001 ms 039578 ms c0 00 00 00 05 00 01 00 <<< 00 004272: OUT: 000000 ms 039579 ms 40 02 00 00 42 00 03 00 >>> 96 c0 02 004273: OUT: 000001 ms 039579 ms c0 00 00 00 05 00 01 00 <<< 00 004274: OUT: 000000 ms 039580 ms 40 02 00 00 42 00 03 00 >>> 98 13 00 004275: OUT: 000000 ms 039580 ms c0 00 00 00 05 00 01 00 <<< 00 004276: OUT: 000001 ms 039580 ms 40 02 00 00 42 00 03 00 >>> 9a 38 01 004277: OUT: 000021 ms 039581 ms c0 00 00 00 05 00 01 00 <<< 00 004279: OUT: 000000 ms 039581 ms 40 02 00 00 42 00 03 00 >>> 9c d0 02 004280: OUT: 000001 ms 039581 ms c0 00 00 00 05 00 01 00 <<< 00 004281: OUT: 000000 ms 039582 ms 40 02 00 00 42 00 03 00 >>> 9e 38 01 004282: OUT: 000001 ms 039582 ms c0 00 00 00 05 00 01 00 <<< 00 004283: OUT: 000000 ms 039583 ms 40 02 00 00 42 00 04 00 >>> a0 01 00 00 004284: OUT: 000001 ms 039583 ms c0 00 00 00 05 00 01 00 <<< 00 004285: OUT: 000000 ms 039584 ms 40 02 00 00 42 00 04 00 >>> a4 80 40 40 004286: OUT: 000001 ms 039584 ms c0 00 00 00 05 00 01 00 <<< 00 004287: OUT: 000000 ms 039585 ms 40 02 00 00 42 00 04 00 >>> a8 ea 03 00 004288: OUT: 000000 ms 039585 ms c0 00 00 00 05 00 01 00 <<< 00 004289: OUT: 000001 ms 039585 ms 40 02 00 00 42 00 04 00 >>> ac f5 01 00 004290: OUT: 000000 ms 039586 ms c0 00 00 00 05 00 01 00 <<< 00 004291: OUT: 000000 ms 039586 ms 40 02 00 00 42 00 03 00 >>> b0 00 04 004292: OUT: 000001 ms 039586 ms c0 00 00 00 05 00 01 00 <<< 00 004293: OUT: 000000 ms 039587 ms 40 02 00 00 42 00 03 00 >>> b2 00 04 004294: OUT: 000000 ms 039587 ms c0 00 00 00 05 00 01 00 <<< 00 004295: OUT: 000001 ms 039587 ms 40 02 00 00 42 00 02 00 >>> b4 01 004296: OUT: 000000 ms 039588 ms c0 00 00 00 05 00 01 00 <<< 00 004297: OUT: 000000 ms 039588 ms 40 02 00 00 42 00 05 00 >>> b8 00 00 00 00 004298: OUT: 000022 ms 039588 ms c0 00 00 00 05 00 01 00 <<< 00 004300: OUT: 000000 ms 039589 ms 40 02 00 00 42 00 05 00 >>> bc 00 00 00 00 004301: OUT: 000001 ms 039589 ms c0 00 00 00 05 00 01 00 <<< 00 004302: OUT: 000000 ms 039590 ms 40 02 00 00 42 00 02 00 >>> 88 00 004303: OUT: 000000 ms 039590 ms c0 00 00 00 05 00 01 00 <<< 00 004304: OUT: 000001 ms 039590 ms 40 02 00 00 42 00 02 00 >>> 88 f0 004305: OUT: 000000 ms 039591 ms c0 00 00 00 05 00 01 00 <<< 00 004306: OUT: 000000 ms 039591 ms 40 02 00 00 42 00 03 00 >>> 5a 03 03 004307: OUT: 000001 ms 039591 ms c0 00 00 00 05 00 01 00 <<< 00 004308: OUT: 000000 ms 039592 ms 40 02 00 00 42 00 02 00 >>> 09 c0 004309: OUT: 000001 ms 039592 ms c0 00 00 00 05 00 01 00 <<< 00 004310: OUT: 000000 ms 039593 ms 40 02 00 00 42 00 04 00 >>> 0e 81 2a 06 004311: OUT: 000000 ms 039593 ms c0 00 00 00 05 00 01 00 <<< 00 004312: OUT: 000000 ms 039593 ms 40 02 00 00 42 00 02 00 >>> 02 c9 Swithing to Svideo (windows) 004313: OUT: 000001 ms 039593 ms c0 00 00 00 05 00 01 00 <<< 00 004314: OUT: 000000 ms 039594 ms 40 00 00 00 21 00 01 00 >>> 08 004315: OUT: 000000 ms 039594 ms 40 00 00 00 20 00 01 00 >>> 10 004316: OUT: 000001 ms 039594 ms 40 02 00 00 42 00 02 00 >>> 0d 00 004317: OUT: 000000 ms 039595 ms c0 00 00 00 05 00 01 00 <<< 00 004318: OUT: 000000 ms 039595 ms 40 00 00 00 22 00 01 00 >>> 10 004319: OUT: 000000 ms 039595 ms 40 00 00 00 14 00 01 00 >>> 32 004320: OUT: 000000 ms 039595 ms 40 00 00 00 25 00 01 00 >>> 02 004321: OUT: 000000 ms 039595 ms c0 00 00 00 26 00 01 00 <<< 00 004322: OUT: 000001 ms 039595 ms 40 00 00 00 26 00 01 00 >>> 00 004323: OUT: 000000 ms 039596 ms 40 02 00 00 30 00 02 00 >>> 03 c0 004324: OUT: 000000 ms 039596 ms c0 00 00 00 05 00 01 00 <<< 00 004325: OUT: 000022 ms 039596 ms 40 02 00 00 30 00 02 00 >>> 0b 00 004327: OUT: 000000 ms 039597 ms c0 00 00 00 05 00 01 00 <<< 00 004328: OUT: 000000 ms 039597 ms 40 02 00 00 30 00 02 00 >>> 04 00 004329: OUT: 000000 ms 039597 ms c0 00 00 00 05 00 01 00 <<< 00 004330: OUT: 000001 ms 039597 ms 40 02 00 00 30 00 02 00 >>> 0c 00 004331: OUT: 000000 ms 039598 ms c0 00 00 00 05 00 01 00 <<< 00 004332: OUT: 000000 ms 039598 ms 40 02 00 00 30 00 02 00 >>> 02 00 004333: OUT: 000001 ms 039598 ms c0 00 00 00 05 00 01 00 <<< 00 004334: OUT: 000000 ms 039599 ms 40 02 00 00 30 00 02 00 >>> 0a 00 004335: OUT: 000001 ms 039599 ms c0 00 00 00 05 00 01 00 <<< 00 004336: OUT: 000000 ms 039600 ms 40 02 00 00 30 00 02 00 >>> 12 00 004337: OUT: 000000 ms 039600 ms c0 00 00 00 05 00 01 00 <<< 00 004338: OUT: 000000 ms 039600 ms 40 02 00 00 30 00 02 00 >>> 13 00 004339: OUT: 000001 ms 039600 ms c0 00 00 00 05 00 01 00 <<< 00 004340: OUT: 000000 ms 039601 ms 40 02 00 00 30 00 02 00 >>> 14 00 004341: OUT: 000000 ms 039601 ms c0 00 00 00 05 00 01 00 <<< 00 004342: OUT: 000001 ms 039601 ms 40 02 00 00 30 00 02 00 >>> 01 0c 004343: OUT: 000000 ms 039602 ms c0 00 00 00 05 00 01 00 <<< 00 004344: OUT: 000000 ms 039602 ms 40 02 00 00 30 00 02 00 >>> 09 00 004345: OUT: 000001 ms 039602 ms c0 00 00 00 05 00 01 00 <<< 00 004346: OUT: 000000 ms 039603 ms 40 02 00 00 3e 00 02 00 >>> 03 ff 004347: OUT: 000000 ms 039603 ms c0 00 00 00 05 00 01 00 <<< 00 004348: OUT: 000001 ms 039603 ms 40 02 00 00 3e 00 02 00 >>> 0b 60 004349: OUT: 000000 ms 039604 ms c0 00 00 00 05 00 01 00 <<< 00 004350: OUT: 000022 ms 039604 ms 40 02 00 00 3e 00 02 00 >>> 04 00 004352: OUT: 000001 ms 039604 ms c0 00 00 00 05 00 01 00 <<< 00 004353: OUT: 000000 ms 039605 ms 40 02 00 00 3e 00 02 00 >>> 0c 00 004354: OUT: 000000 ms 039605 ms c0 00 00 00 05 00 01 00 <<< 00 004355: OUT: 000001 ms 039605 ms 40 02 00 00 3e 00 02 00 >>> 02 00 004356: OUT: 000000 ms 039606 ms c0 00 00 00 05 00 01 00 <<< 00 004357: OUT: 000000 ms 039606 ms 40 02 00 00 3e 00 02 00 >>> 0a 00 004358: OUT: 000001 ms 039606 ms c0 00 00 00 05 00 01 00 <<< 00 004359: OUT: 000000 ms 039607 ms 40 02 00 00 3e 00 02 00 >>> 12 00 004360: OUT: 000000 ms 039607 ms c0 00 00 00 05 00 01 00 <<< 00 004361: OUT: 000000 ms 039607 ms 40 02 00 00 3e 00 02 00 >>> 13 00 004362: OUT: 000001 ms 039607 ms c0 00 00 00 05 00 01 00 <<< 00 004363: OUT: 000000 ms 039608 ms 40 02 00 00 3e 00 02 00 >>> 14 00 004364: OUT: 000001 ms 039608 ms c0 00 00 00 05 00 01 00 <<< 00 004365: OUT: 000000 ms 039609 ms 40 02 00 00 3e 00 02 00 >>> 09 02 004366: OUT: 000000 ms 039609 ms c0 00 00 00 05 00 01 00 <<< 00 004367: OUT: 000000 ms 039609 ms c0 00 00 00 27 00 01 00 <<< 34 004368: OUT: 000000 ms 039609 ms 40 00 00 00 27 00 01 00 >>> 34 004369: OUT: 000000 ms 039609 ms c0 00 00 00 0c 00 01 00 <<< 10 004370: OUT: 000001 ms 039609 ms 40 00 00 00 0c 00 01 00 >>> 10 004371: OUT: 000000 ms 039610 ms c0 00 00 00 12 00 01 00 <<< 27 004372: OUT: 000000 ms 039610 ms 40 00 00 00 12 00 01 00 >>> 67 004373: OUT: 000001 ms 039610 ms 40 00 00 00 21 00 01 00 >>> 08 004374: OUT: 000000 ms 039611 ms 40 00 00 00 20 00 01 00 >>> 10 004375: OUT: 000000 ms 039611 ms 40 02 00 00 42 00 02 00 >>> 0d 00 004376: OUT: 000001 ms 039611 ms c0 00 00 00 05 00 01 00 <<< 00 004377: OUT: 000000 ms 039612 ms 40 00 00 00 22 00 01 00 >>> 10 004378: OUT: 000066 ms 039612 ms 40 00 00 00 14 00 01 00 >>> 32 004380: OUT: 000000 ms 039612 ms 40 00 00 00 25 00 01 00 >>> 02 004381: OUT: 000001 ms 039612 ms c0 00 00 00 0f 00 01 00 <<< 07 004382: OUT: 000001 ms 039613 ms 40 00 00 00 0f 00 01 00 >>> 07 004383: OUT: 000000 ms 039614 ms c0 00 00 00 43 00 01 00 <<< 00 004384: OUT: 000000 ms 039614 ms 40 00 00 00 40 00 02 00 >>> 08 88 004385: OUT: 000001 ms 039614 ms 40 00 00 00 42 00 01 00 >>> 0e 004386: OUT: 000000 ms 039615 ms c0 00 00 00 43 00 01 00 <<< 00 004387: OUT: 000000 ms 039615 ms 40 00 00 00 40 00 02 00 >>> 08 08 004388: OUT: 000000 ms 039615 ms 40 00 00 00 42 00 01 00 >>> 10 004389: OUT: 000001 ms 039615 ms c0 00 00 00 43 00 01 00 <<< 00 004390: OUT: 000000 ms 039616 ms 40 00 00 00 40 00 02 00 >>> 08 88 004391: OUT: 000000 ms 039616 ms 40 00 00 00 42 00 01 00 >>> 14 004392: OUT: 000000 ms 039616 ms c0 00 00 00 43 00 01 00 <<< 00 004393: OUT: 000001 ms 039616 ms 40 00 00 00 40 00 02 00 >>> 08 88 004394: OUT: 000000 ms 039617 ms 40 00 00 00 42 00 01 00 >>> 16 004395: OUT: 000000 ms 039617 ms c0 00 00 00 43 00 01 00 <<< 00 004396: OUT: 000000 ms 039617 ms 40 00 00 00 40 00 02 00 >>> 00 00 004397: OUT: 000001 ms 039617 ms 40 00 00 00 42 00 01 00 >>> 02 004398: OUT: 000000 ms 039618 ms 40 03 00 00 42 00 01 00 >>> 1f 004399: OUT: 000001 ms 039618 ms c0 00 00 00 05 00 01 00 <<< 00 004400: OUT: 000000 ms 039619 ms c0 02 00 00 42 00 01 00 <<< c0 004401: OUT: 000000 ms 039619 ms c0 00 00 00 05 00 01 00 <<< 00 004402: OUT: 000148 ms 039619 ms 40 00 00 00 08 00 01 00 >>> 04 004410: OUT: 000000 ms 039831 ms 40 03 00 00 3e 00 01 00 >>> 10 004411: OUT: 000001 ms 039831 ms c0 00 00 00 05 00 01 00 <<< 00 004412: OUT: 000000 ms 039832 ms c0 02 00 00 3e 00 01 00 <<< 00 004413: OUT: 000001 ms 039832 ms c0 00 00 00 05 00 01 00 <<< 00 004417: OUT: 000000 ms 039834 ms 40 03 00 00 3e 00 01 00 >>> 10 004418: OUT: 000001 ms 039834 ms c0 00 00 00 05 00 01 00 <<< 00 004419: OUT: 000000 ms 039835 ms c0 02 00 00 3e 00 01 00 <<< 00 004420: OUT: 000001 ms 039835 ms c0 00 00 00 05 00 01 00 <<< 00 004421: OUT: 000000 ms 039836 ms 40 03 00 00 3e 00 01 00 >>> 10 004425: OUT: 000000 ms 039837 ms c0 00 00 00 05 00 01 00 <<< 00 004426: OUT: 000000 ms 039837 ms c0 02 00 00 3e 00 01 00 <<< 00 004427: OUT: 000002 ms 039837 ms c0 00 00 00 05 00 01 00 <<< 00 004447: OUT: 000001 ms 040077 ms 40 03 00 00 3e 00 01 00 >>> 10 004451: OUT: 000000 ms 040079 ms c0 00 00 00 05 00 01 00 <<< 00 004452: OUT: 000001 ms 040079 ms c0 02 00 00 3e 00 01 00 <<< 00 004453: OUT: 000001 ms 040080 ms c0 00 00 00 05 00 01 00 <<< 00 004454: OUT: 000000 ms 040081 ms 40 03 00 00 3e 00 01 00 >>> 10 004458: OUT: 000000 ms 040082 ms c0 00 00 00 05 00 01 00 <<< 00 004459: OUT: 000001 ms 040082 ms c0 02 00 00 3e 00 01 00 <<< 00 004460: OUT: 000001 ms 040083 ms c0 00 00 00 05 00 01 00 <<< 00 004464: OUT: 000000 ms 040085 ms 40 03 00 00 3e 00 01 00 >>> 10 004465: OUT: 000001 ms 040085 ms c0 00 00 00 05 00 01 00 <<< 00 004466: OUT: 000000 ms 040086 ms c0 02 00 00 3e 00 01 00 <<< 00 004467: OUT: 000001 ms 040086 ms c0 00 00 00 05 00 01 00 <<< 00 004525: OUT: 000001 ms 040524 ms 40 03 00 00 3e 00 01 00 >>> 10 004526: OUT: -00001 ms 040525 ms c0 00 00 00 05 00 01 00 <<< 00 004530: OUT: 000001 ms 040525 ms c0 02 00 00 3e 00 01 00 <<< 00 004531: OUT: 000000 ms 040526 ms c0 00 00 00 05 00 01 00 <<< 00 004532: OUT: 000001 ms 040526 ms 40 03 00 00 3e 00 01 00 >>> 10 004533: OUT: 000001 ms 040527 ms c0 00 00 00 05 00 01 00 <<< 00 004534: OUT: -00001 ms 040528 ms c0 02 00 00 3e 00 01 00 <<< 00 004538: OUT: 000000 ms 040529 ms c0 00 00 00 05 00 01 00 <<< 00 004539: OUT: 000001 ms 040529 ms 40 03 00 00 3e 00 01 00 >>> 10 004540: OUT: 000000 ms 040530 ms c0 00 00 00 05 00 01 00 <<< 00 004544: OUT: 000000 ms 040531 ms c0 02 00 00 3e 00 01 00 <<< 00 004545: OUT: 000002 ms 040531 ms c0 00 00 00 05 00 01 00 <<< 00 004584: OUT: 000000 ms 040967 ms 40 03 00 00 3e 00 01 00 >>> 10 004585: OUT: 000002 ms 040967 ms c0 00 00 00 05 00 01 00 <<< 00 004586: OUT: -00001 ms 040969 ms c0 02 00 00 3e 00 01 00 <<< 00 004590: OUT: 000000 ms 040969 ms c0 00 00 00 05 00 01 00 <<< 00 004591: OUT: 000001 ms 040969 ms 40 03 00 00 3e 00 01 00 >>> 10 004592: OUT: 000001 ms 040970 ms c0 00 00 00 05 00 01 00 <<< 00 004593: OUT: 000000 ms 040971 ms c0 02 00 00 3e 00 01 00 <<< 00 004597: OUT: 000001 ms 040972 ms c0 00 00 00 05 00 01 00 <<< 00 004598: OUT: 000001 ms 040973 ms 40 03 00 00 3e 00 01 00 >>> 10 004602: OUT: 000000 ms 040975 ms c0 00 00 00 05 00 01 00 <<< 00 004603: OUT: 000002 ms 040975 ms c0 02 00 00 3e 00 01 00 <<< 00 004604: OUT: 000000 ms 040977 ms c0 00 00 00 05 00 01 00 <<< 00 004626: OUT: 000000 ms 041239 ms 40 03 00 00 3e 00 01 00 >>> 10 004627: OUT: 000001 ms 041239 ms c0 00 00 00 05 00 01 00 <<< 00 004628: OUT: 000000 ms 041240 ms c0 02 00 00 3e 00 01 00 <<< 00 004629: OUT: 000000 ms 041240 ms c0 00 00 00 05 00 01 00 <<< 00 004633: OUT: 000001 ms 041241 ms 40 03 00 00 3e 00 01 00 >>> 10 004634: OUT: 000002 ms 041242 ms c0 00 00 00 05 00 01 00 <<< 00 004635: OUT: -00001 ms 041244 ms c0 02 00 00 3e 00 01 00 <<< 00 004639: OUT: 000000 ms 041244 ms c0 00 00 00 05 00 01 00 <<< 00 004640: OUT: 000001 ms 041244 ms 40 03 00 00 3e 00 01 00 >>> 10 004641: OUT: 000000 ms 041245 ms c0 00 00 00 05 00 01 00 <<< 00 004642: OUT: 000000 ms 041245 ms c0 02 00 00 3e 00 01 00 <<< 00 004643: OUT: 000001 ms 041245 ms c0 00 00 00 05 00 01 00 <<< 00 004688: OUT: 000000 ms 041478 ms 40 03 00 00 3e 00 01 00 >>> 10 004691: OUT: 000000 ms 041478 ms c0 00 00 00 05 00 01 00 <<< 00 004692: OUT: 000001 ms 041478 ms c0 02 00 00 3e 00 01 00 <<< 00 004693: OUT: 000000 ms 041479 ms c0 00 00 00 05 00 01 00 <<< 00 004695: OUT: 000000 ms 041480 ms 40 03 00 00 3e 00 01 00 >>> 10 004698: OUT: 000000 ms 041481 ms c0 00 00 00 05 00 01 00 <<< 00 004699: OUT: 000001 ms 041481 ms c0 02 00 00 3e 00 01 00 <<< 00 004700: OUT: 000000 ms 041482 ms c0 00 00 00 05 00 01 00 <<< 00 004702: OUT: 000041 ms 041483 ms 40 03 00 00 3e 00 01 00 >>> 10 004705: OUT: 000002 ms 041484 ms c0 00 00 00 05 00 01 00 <<< 00 004706: OUT: 000230 ms 041486 ms c0 02 00 00 3e 00 01 00 <<< 00 004708: OUT: 000230 ms 041487 ms c0 00 00 00 05 00 01 00 <<< 00 004788: OUT: 000001 ms 042170 ms c0 00 00 00 0f 00 01 00 <<< 07 004789: OUT: 000000 ms 042171 ms 40 00 00 00 0f 00 01 00 >>> 07 004792: OUT: 000000 ms 042172 ms 40 03 00 00 3e 00 01 00 >>> 10 004794: OUT: 000000 ms 042172 ms c0 00 00 00 05 00 01 00 <<< 00 004795: OUT: 000001 ms 042172 ms c0 02 00 00 3e 00 01 00 <<< 00 004796: OUT: 000000 ms 042173 ms c0 00 00 00 05 00 01 00 <<< 00 004797: OUT: 000000 ms 042173 ms 40 03 00 00 3e 00 01 00 >>> 10 004798: OUT: 000001 ms 042173 ms c0 00 00 00 05 00 01 00 <<< 00 004799: OUT: 000000 ms 042174 ms c0 02 00 00 3e 00 01 00 <<< 00 004802: OUT: 000001 ms 042174 ms c0 00 00 00 05 00 01 00 <<< 00 004804: OUT: 000002 ms 042175 ms 40 03 00 00 3e 00 01 00 >>> 10 004820: OUT: 000000 ms 042191 ms c0 00 00 00 05 00 01 00 <<< 00 004821: OUT: 000001 ms 042191 ms c0 00 00 00 43 00 01 00 <<< 00 004822: OUT: 000000 ms 042192 ms c0 02 00 00 3e 00 01 00 <<< 00 004823: OUT: 000000 ms 042192 ms 40 00 00 00 40 00 02 00 >>> 00 80 004824: OUT: 000000 ms 042192 ms c0 00 00 00 05 00 01 00 <<< 00 004825: OUT: 000001 ms 042192 ms 40 00 00 00 42 00 01 00 >>> 02 004826: OUT: 000000 ms 042193 ms c0 00 00 00 12 00 01 00 <<< 67 004827: OUT: 000153 ms 042193 ms 40 00 00 00 12 00 01 00 >>> 27 004833: OUT: 000000 ms 042350 ms c0 00 00 00 0c 00 01 00 <<< 10 004834: OUT: 000000 ms 042350 ms 40 00 00 00 0c 00 01 00 >>> 00 004835: OUT: 000002 ms 042350 ms c0 00 00 00 00 00 01 00 <<< 14 004857: OUT: 000000 ms 042402 ms 40 02 00 00 42 00 02 00 >>> 02 c4 Swithing to Television (windows) 004858: OUT: 000024 ms 042402 ms c0 00 00 00 05 00 01 00 <<< 00 004862: OUT: 000004 ms 042422 ms c0 00 00 00 00 00 01 00 <<< 14 004863: OUT: 000000 ms 042426 ms 40 03 00 00 3e 00 01 00 >>> 10 004864: OUT: 000001 ms 042426 ms c0 00 00 00 05 00 01 00 <<< 00 004865: OUT: 000000 ms 042427 ms c0 02 00 00 3e 00 01 00 <<< 00 004866: OUT: 000000 ms 042427 ms c0 00 00 00 05 00 01 00 <<< 00 004867: OUT: 000001 ms 042427 ms 40 03 00 00 3e 00 01 00 >>> 10 004868: OUT: 000000 ms 042428 ms c0 00 00 00 05 00 01 00 <<< 00 004869: OUT: 000000 ms 042428 ms c0 02 00 00 3e 00 01 00 <<< 00 004870: OUT: 000022 ms 042428 ms c0 00 00 00 05 00 01 00 <<< 00 004872: OUT: 000000 ms 042429 ms 40 03 00 00 3e 00 01 00 >>> 10 004873: OUT: 000000 ms 042429 ms c0 00 00 00 05 00 01 00 <<< 00 004874: OUT: 000001 ms 042429 ms c0 02 00 00 3e 00 01 00 <<< 00 004875: OUT: 000028 ms 042430 ms c0 00 00 00 05 00 01 00 <<< 00 004881: OUT: 000000 ms 042473 ms 40 00 00 00 06 00 01 00 >>> 40 004882: OUT: 000000 ms 042473 ms 40 00 00 00 15 00 01 00 >>> 20 004883: OUT: 000000 ms 042473 ms 40 00 00 00 16 00 01 00 >>> 20 004884: OUT: 000000 ms 042473 ms 40 00 00 00 17 00 01 00 >>> 20 004885: OUT: 000000 ms 042473 ms 40 00 00 00 18 00 01 00 >>> 00 004886: OUT: 000000 ms 042473 ms 40 00 00 00 19 00 01 00 >>> 00 004887: OUT: 000001 ms 042473 ms 40 00 00 00 1a 00 01 00 >>> 00 004888: OUT: 000000 ms 042474 ms 40 00 00 00 23 00 01 00 >>> 00 004889: OUT: 000000 ms 042474 ms 40 00 00 00 24 00 01 00 >>> 00 004890: OUT: 000000 ms 042474 ms 40 00 00 00 26 00 01 00 >>> 00 004891: OUT: 000000 ms 042474 ms 40 00 00 00 13 00 01 00 >>> 08 004892: OUT: 000000 ms 042474 ms 40 00 00 00 12 00 01 00 >>> 27 004893: OUT: 000001 ms 042474 ms 40 00 00 00 0c 00 01 00 >>> 10 004894: OUT: 000000 ms 042475 ms 40 00 00 00 27 00 01 00 >>> 34 004895: OUT: 000000 ms 042475 ms 40 00 00 00 10 00 01 00 >>> 40 004896: OUT: 000000 ms 042475 ms 40 00 00 00 11 00 01 00 >>> 11 004897: OUT: 000000 ms 042475 ms 40 00 00 00 28 00 01 00 >>> 01 004898: OUT: 000000 ms 042475 ms 40 00 00 00 29 00 01 00 >>> b3 004899: OUT: 000000 ms 042475 ms 40 00 00 00 2a 00 01 00 >>> 01 004900: OUT: 000000 ms 042475 ms 40 00 00 00 2b 00 01 00 >>> 47 004901: OUT: 000001 ms 042475 ms 40 00 00 00 1c 00 01 00 >>> 00 004902: OUT: 000000 ms 042476 ms 40 00 00 00 1d 00 01 00 >>> 00 004903: OUT: 000000 ms 042476 ms 40 00 00 00 1e 00 01 00 >>> b4 004904: OUT: 000000 ms 042476 ms 40 00 00 00 1f 00 01 00 >>> 48 004905: OUT: 000000 ms 042476 ms c0 00 00 00 1b 00 01 00 <<< 00 004906: OUT: 000000 ms 042476 ms 40 00 00 00 1b 00 01 00 >>> 00 004907: OUT: 000000 ms 042476 ms c0 00 00 00 1b 00 01 00 <<< 00 004908: OUT: 000022 ms 042476 ms 40 00 00 00 1b 00 01 00 >>> 00 004910: OUT: 000000 ms 042477 ms 40 02 00 00 42 00 02 00 >>> 01 08 004911: OUT: 000001 ms 042477 ms c0 00 00 00 05 00 01 00 <<< 00 004912: OUT: 000000 ms 042478 ms 40 02 00 00 42 00 04 00 >>> 03 30 90 90 004913: OUT: 000001 ms 042478 ms c0 00 00 00 05 00 01 00 <<< 00 004914: OUT: 000004 ms 042479 ms 40 02 00 00 42 00 04 00 >>> 06 eb e0 88 004915: OUT: 000001 ms 042483 ms c0 00 00 00 05 00 01 00 <<< 00 004916: OUT: 000000 ms 042484 ms 40 02 00 00 42 00 04 00 >>> 0a 80 44 40 004917: OUT: 000001 ms 042484 ms c0 00 00 00 05 00 01 00 <<< 00 004918: OUT: 000021 ms 042485 ms 40 02 00 00 42 00 04 00 >>> 11 00 c8 80 004920: OUT: 000000 ms 042485 ms c0 00 00 00 05 00 01 00 <<< 00 004921: OUT: 000000 ms 042485 ms 40 02 00 00 42 00 04 00 >>> 14 00 11 01 004922: OUT: 000001 ms 042485 ms c0 00 00 00 05 00 01 00 <<< 00 004923: OUT: 000000 ms 042486 ms 40 02 00 00 42 00 04 00 >>> 17 42 40 80 004924: OUT: 000001 ms 042486 ms c0 00 00 00 05 00 01 00 <<< 00 004925: OUT: 000000 ms 042487 ms 40 02 00 00 42 00 02 00 >>> 40 00 004926: OUT: 000001 ms 042487 ms c0 00 00 00 05 00 01 00 <<< 00 004927: OUT: 000000 ms 042488 ms 40 02 00 00 42 00 04 00 >>> 41 ff ff ff 004928: OUT: 000000 ms 042488 ms c0 00 00 00 05 00 01 00 <<< 00 004929: OUT: 000000 ms 042488 ms 40 02 00 00 42 00 04 00 >>> 44 ff ff ff 004930: OUT: 000001 ms 042488 ms c0 00 00 00 05 00 01 00 <<< 00 004931: OUT: 000000 ms 042489 ms 40 02 00 00 42 00 04 00 >>> 47 ff ff ff 004932: OUT: 000001 ms 042489 ms c0 00 00 00 05 00 01 00 <<< 00 004933: OUT: 000000 ms 042490 ms 40 02 00 00 42 00 04 00 >>> 4a ff ff ff 004934: OUT: 000001 ms 042490 ms c0 00 00 00 05 00 01 00 <<< 00 004935: OUT: 000000 ms 042491 ms 40 02 00 00 42 00 04 00 >>> 4d ff ff ff 004936: OUT: 000000 ms 042491 ms c0 00 00 00 05 00 01 00 <<< 00 004937: OUT: 000001 ms 042491 ms 40 02 00 00 42 00 04 00 >>> 50 ff ff ff 004938: OUT: 000000 ms 042492 ms c0 00 00 00 05 00 01 00 <<< 00 004939: OUT: 000022 ms 042492 ms 40 02 00 00 42 00 04 00 >>> 53 ff 5f ff 004941: OUT: 000001 ms 042492 ms c0 00 00 00 05 00 01 00 <<< 00 004942: OUT: 000000 ms 042493 ms 40 02 00 00 42 00 03 00 >>> 56 ff ff 004943: OUT: 000001 ms 042493 ms c0 00 00 00 05 00 01 00 <<< 00 004944: OUT: 000000 ms 042494 ms 40 02 00 00 42 00 03 00 >>> 58 00 47 004945: OUT: 000000 ms 042494 ms c0 00 00 00 05 00 01 00 <<< 00 004946: OUT: 000001 ms 042494 ms 40 02 00 00 42 00 03 00 >>> 5d 3e 00 004947: OUT: 000000 ms 042495 ms c0 00 00 00 05 00 01 00 <<< 00 004948: OUT: 000000 ms 042495 ms 40 02 00 00 42 00 02 00 >>> 80 1c 004949: OUT: 000001 ms 042495 ms c0 00 00 00 05 00 01 00 <<< 00 004950: OUT: 000000 ms 042496 ms 40 02 00 00 42 00 04 00 >>> 83 01 a5 10 004951: OUT: 000001 ms 042496 ms c0 00 00 00 05 00 01 00 <<< 00 004952: OUT: 000000 ms 042497 ms 40 02 00 00 42 00 04 00 >>> 86 45 41 f0 004953: OUT: 000000 ms 042497 ms c0 00 00 00 05 00 01 00 <<< 00 004954: OUT: 000001 ms 042497 ms 40 02 00 00 42 00 02 00 >>> 90 00 004955: OUT: 000000 ms 042498 ms c0 00 00 00 05 00 01 00 <<< 00 004956: OUT: 000001 ms 042498 ms 40 02 00 00 42 00 04 00 >>> 91 08 00 80 004957: OUT: 000000 ms 042499 ms c0 00 00 00 05 00 01 00 <<< 00 004958: OUT: 000000 ms 042499 ms 40 02 00 00 42 00 03 00 >>> 94 08 00 004959: OUT: 000001 ms 042499 ms c0 00 00 00 05 00 01 00 <<< 00 004960: OUT: 000000 ms 042500 ms 40 02 00 00 42 00 03 00 >>> 96 c0 02 004961: OUT: 000001 ms 042500 ms c0 00 00 00 05 00 01 00 <<< 00 004962: OUT: 000021 ms 042501 ms 40 02 00 00 42 00 03 00 >>> 98 13 00 004964: OUT: 000001 ms 042501 ms c0 00 00 00 05 00 01 00 <<< 00 004965: OUT: 000000 ms 042502 ms 40 02 00 00 42 00 03 00 >>> 9a 38 01 004966: OUT: 000000 ms 042502 ms c0 00 00 00 05 00 01 00 <<< 00 004967: OUT: 000001 ms 042502 ms 40 02 00 00 42 00 03 00 >>> 9c d0 02 004968: OUT: 000000 ms 042503 ms c0 00 00 00 05 00 01 00 <<< 00 004969: OUT: 000000 ms 042503 ms 40 02 00 00 42 00 03 00 >>> 9e 38 01 004970: OUT: 000001 ms 042503 ms c0 00 00 00 05 00 01 00 <<< 00 004971: OUT: 000000 ms 042504 ms 40 02 00 00 42 00 04 00 >>> a0 01 00 00 004972: OUT: 000001 ms 042504 ms c0 00 00 00 05 00 01 00 <<< 00 004973: OUT: 000000 ms 042505 ms 40 02 00 00 42 00 04 00 >>> a4 80 40 40 004974: OUT: 000001 ms 042505 ms c0 00 00 00 05 00 01 00 <<< 00 004975: OUT: 000000 ms 042506 ms 40 02 00 00 42 00 04 00 >>> a8 ea 03 00 004976: OUT: 000001 ms 042506 ms c0 00 00 00 05 00 01 00 <<< 00 004977: OUT: 000000 ms 042507 ms 40 02 00 00 42 00 04 00 >>> ac f5 01 00 004978: OUT: 000001 ms 042507 ms c0 00 00 00 05 00 01 00 <<< 00 004979: OUT: 000000 ms 042508 ms 40 02 00 00 42 00 03 00 >>> b0 00 04 004980: OUT: 000000 ms 042508 ms c0 00 00 00 05 00 01 00 <<< 00 004981: OUT: 000000 ms 042508 ms 40 02 00 00 42 00 03 00 >>> b2 00 04 004982: OUT: 000001 ms 042508 ms c0 00 00 00 05 00 01 00 <<< 00 004983: OUT: 000021 ms 042509 ms 40 02 00 00 42 00 02 00 >>> b4 01 004985: OUT: 000001 ms 042509 ms c0 00 00 00 05 00 01 00 <<< 00 004986: OUT: 000000 ms 042510 ms 40 02 00 00 42 00 05 00 >>> b8 00 00 00 00 004987: OUT: 000001 ms 042510 ms c0 00 00 00 05 00 01 00 <<< 00 004988: OUT: 000000 ms 042511 ms 40 02 00 00 42 00 05 00 >>> bc 00 00 00 00 004989: OUT: 000001 ms 042511 ms c0 00 00 00 05 00 01 00 <<< 00 004990: OUT: 000002 ms 042512 ms 40 02 00 00 42 00 02 00 >>> 88 00 004991: OUT: 000001 ms 042514 ms c0 00 00 00 05 00 01 00 <<< 00 004992: OUT: 000000 ms 042515 ms 40 02 00 00 42 00 02 00 >>> 88 f0 004993: OUT: 000000 ms 042515 ms c0 00 00 00 05 00 01 00 <<< 00 004994: OUT: 000000 ms 042515 ms 40 02 00 00 42 00 03 00 >>> 5a 03 03 004995: OUT: 000001 ms 042515 ms c0 00 00 00 05 00 01 00 <<< 00 004996: OUT: 000000 ms 042516 ms 40 02 00 00 42 00 02 00 >>> 09 40 004997: OUT: 000001 ms 042516 ms c0 00 00 00 05 00 01 00 <<< 00 004998: OUT: 000021 ms 042517 ms 40 02 00 00 42 00 04 00 >>> 0e 81 2a 06 005000: OUT: 000001 ms 042517 ms c0 00 00 00 05 00 01 00 <<< 00 005001: OUT: 000000 ms 042518 ms 40 02 00 00 c2 00 05 00 >>> 06 a2 8e 01 b0 005002: OUT: 000001 ms 042518 ms c0 00 00 00 05 00 01 00 <<< 00 005003: OUT: 000000 ms 042519 ms 40 02 00 00 86 00 04 00 >>> 00 16 70 49 005004: OUT: 000000 ms 042519 ms c0 00 00 00 05 00 01 00 <<< 00
[ 7988.713218] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 02 [ 7988.724177] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 84 [ 7988.724498] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7988.724623] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 02 85 Switching to Composite (linux) [ 7988.736011] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 09 [ 7988.748010] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 53 [ 7988.748249] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7988.748373] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 09 53 [ 7988.760011] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 83 [ 7988.772013] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7988.772249] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7988.772373] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 83 00 [ 7988.784014] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.784123] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.796011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7988.808011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.808125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.820012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7988.832010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.832126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.844010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7988.856010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.856126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.868010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7988.880010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.880126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.892012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7988.904097] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7988.932012] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 7988.932130] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> 86 [ 7988.956010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.956129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7988.968010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7988.980011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7988.980129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7988.992012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7989.004009] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.004129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7989.016010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7989.028010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.028132] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7989.040010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7989.052010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.052133] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7989.064018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7989.076013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.076132] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7989.088011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7989.100010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.100133] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7989.112012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7989.124009] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.124133] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7989.136010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7989.148011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.148135] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7989.160010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7989.172010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.172136] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7989.184011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7989.196013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7989.196136] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 03 [ 7989.208011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7989.220025] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7989.220137] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7989.232012] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7989.244012] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7989.256010] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7989.268115] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7989.280010] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7989.292011] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7989.304014] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7989.316012] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7989.328010] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7989.340010] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7989.352010] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7989.364012] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7989.376011] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7989.388012] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< 00 [ 7989.388142] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7989.400014] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7989.412015] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7989.424014] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 0f 93 8e 02 [ 7989.436025] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7989.448010] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< c0 [ 7989.448269] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7989.448394] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7989.448646] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7992.802979] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 02 [ 7992.812013] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 85 [ 7992.812244] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7992.812367] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 02 89 Switching to Svideo (linux) [ 7992.824050] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 09 [ 7992.836010] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 53 [ 7992.836242] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7992.836367] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 09 d3 [ 7992.848011] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 83 [ 7992.860012] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7992.860243] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7992.860368] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 83 00 [ 7992.872013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7992.872119] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7992.884010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7992.896010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7992.896119] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7992.908009] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7992.920011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7992.920120] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7992.932011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7992.944048] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7992.944120] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7992.956011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7992.968010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7992.968122] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7992.980012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7992.992012] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7993.020014] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< 86 [ 7993.020123] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> 86 [ 7993.044011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.044123] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.056011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7993.068010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.068125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7993.080014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7993.092012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.092125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.104012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7993.116010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.116126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.128010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7993.140012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.140126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.152195] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7993.164010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.164126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.176011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7993.188010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.188129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7993.200011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7993.212012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.212129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7993.224011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7993.236010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.236132] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7993.248010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7993.260010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.260129] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7993.272010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7993.284012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7993.284130] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 03 [ 7993.296012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7993.308025] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7993.308133] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7993.320010] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7993.332012] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7993.344010] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7993.356010] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7993.368010] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7993.380012] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7993.392010] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7993.404012] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7993.416011] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7993.428011] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7993.440010] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7993.452012] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7993.464012] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7993.476013] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< 00 [ 7993.476136] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7993.488014] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7993.500015] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7993.512011] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 0f 93 8e 02 [ 7993.524024] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7993.536010] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< c0 [ 7993.536263] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7993.536388] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7993.536637] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.233137] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 02 [ 7996.244013] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 89 [ 7996.244219] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.244343] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 02 84 Switching to Television (linux) [ 7996.256011] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 09 [ 7996.268010] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< d3 [ 7996.268219] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.268342] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 09 53 [ 7996.280011] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 83 [ 7996.292012] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7996.292219] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.292343] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 83 00 [ 7996.304013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.304093] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.316010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7996.328010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.328095] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.340012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7996.352011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.352096] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.364010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7996.376011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.376097] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.388010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7996.400010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.400096] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.412012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7996.424011] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7996.452011] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< 86 [ 7996.452099] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 7996.476011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.476100] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7996.488011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7996.500011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.500099] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.512013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7996.524012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.524100] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.536010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7996.548010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.548102] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.560010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7996.572010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.572102] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.584011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7996.596012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.596102] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.608010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7996.620013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.620103] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.632010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7996.644013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.644104] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7996.656010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7996.668012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.668106] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7996.680010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7996.692010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.692106] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7996.704010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7996.716012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.716106] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 03 [ 7996.728010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7996.740022] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7996.740106] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7996.752012] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7996.764012] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7996.776011] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7996.788010] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7996.800011] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7996.812010] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7996.824052] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7996.836012] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7996.848010] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7996.860010] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7996.872010] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7996.884010] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7996.896010] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7996.908010] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< 00 [ 7996.908112] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7996.920015] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7996.932015] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7996.944017] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 0f 93 8e 02 [ 7996.956025] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7996.968017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7996.968242] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.968366] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7996.968613] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7996.968788] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.968986] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7996.980018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7996.992011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7996.992115] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.004408] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7997.016012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.016115] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.028013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7997.040127] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.040242] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.052015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7997.064015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.064116] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.076014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7997.088020] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> 27 [ 7997.116016] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 7997.116121] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 7997.140012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.140118] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7997.152011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7997.164011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.164118] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.176011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7997.188069] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.188121] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.200010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7997.212010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.212121] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.224010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7997.236010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.236121] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.248013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7997.260012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.260122] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.272010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7997.284010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.284122] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.296012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7997.308011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.308124] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7997.320012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7997.332091] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.332250] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7997.344010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7997.356010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.356125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7997.368013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7997.380076] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.380125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 83 [ 7997.392011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7997.404022] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7997.416014] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 14 6e 49 [ 7997.428012] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 0f 93 8e 02 [ 7997.440626] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0a 80 [ 7997.452030] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0b 40 [ 7997.464025] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0c 40 [ 7997.476017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0d 00 [ 7997.490278] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7997.500015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7997.500255] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.500381] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7997.500628] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.529054] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7997.540015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7997.540470] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.540634] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7997.540879] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.569781] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7997.580189] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7997.580509] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.580634] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7997.580880] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7997.581011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.581130] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.592011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7997.604012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.604132] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.616010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7997.628013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.628133] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.640012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7997.652010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.652134] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.664011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7997.676012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.676134] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.688011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7997.700011] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7997.728011] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 7997.728137] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 7997.752011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.752137] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7997.764010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7997.776012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.776138] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.788011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7997.800010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.800138] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.812010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7997.824051] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.824138] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.836011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7997.848013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.848140] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.860092] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7997.872011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.872140] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.884010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7997.896012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.896141] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7997.908009] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7997.920010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.920141] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7997.932010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7997.944010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.944141] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7997.956010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7997.968012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.968144] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7997.980013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7997.992012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7997.992145] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 03 [ 7998.004015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7998.016020] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.016144] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.028011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7998.040011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.040144] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.052011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7998.064010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.064145] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.076010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7998.088012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.088147] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.100013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7998.112065] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.112148] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.124010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7998.136011] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7998.164012] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 7998.164148] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 7998.188014] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.188151] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7998.200013] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7998.212010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.212150] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.224010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7998.236011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.236151] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.248012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7998.260010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.260151] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.272012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7998.284010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.284151] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.296011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7998.308012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.308153] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.320012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7998.332010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.332154] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7998.344010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7998.356010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.356154] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7998.368010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7998.380013] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.380154] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7998.392012] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7998.404011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.404155] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7998.416011] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7998.428010] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7998.428157] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 03 [ 7998.440010] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7998.479698] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.492020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.492287] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.492411] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.492657] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.521348] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.532016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.532287] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.532412] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.532659] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.561367] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.572130] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.572414] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.572538] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.572784] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.601378] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.612016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.612290] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.612429] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.612662] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.641362] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.652016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.652291] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.652415] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.652662] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.681517] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.692017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.692292] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.692417] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.692663] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.721347] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.732018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.732294] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.732418] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.732664] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.761353] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.772040] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.772315] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.772420] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.772666] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.801066] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.812017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.812298] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.812577] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.812793] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.842018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.852017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.852297] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.852421] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.852668] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.882034] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.892016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.892300] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.892422] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7998.892863] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.915819] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.928017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.928300] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.928423] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.928670] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.957121] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7998.968019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7998.968301] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.968425] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7998.968672] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7998.996849] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.008019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.008302] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.008426] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.008673] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.037381] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.048289] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.048554] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.048677] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.049050] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.077402] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.088019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.088304] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.088667] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.089052] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.116989] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.128020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.128305] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.128429] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.128676] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.157389] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.168020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.168307] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.168431] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.168677] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.197287] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.208019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.208342] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.208432] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.208679] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.237400] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.248019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.248309] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.248433] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.248694] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.277375] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.288019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.288311] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.288434] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.288681] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.317387] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.328044] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.328433] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.328562] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.328807] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.357386] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.368287] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.368564] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.368687] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.369062] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.397408] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.408018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.408314] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.408642] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.409063] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.437406] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.448019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.448315] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.448439] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.448685] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.477392] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.488109] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.488441] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.488565] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.488811] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.517378] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.528020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.528318] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.528499] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.528813] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.557381] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.568018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.568319] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.568442] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.568689] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.597376] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.608018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.608320] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.608443] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.608690] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.637375] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.648018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.648321] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.648444] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.648692] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.676829] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.688047] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.688324] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.688445] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.688693] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.717365] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.728125] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.728601] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.728699] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.729053] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.757392] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.768017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.768324] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.768448] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.768872] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.797411] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.808019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.808326] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.808449] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.808696] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.837390] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.848020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.848327] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.848451] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.848697] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.877384] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.888018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.888328] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.888452] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.888698] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.916971] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.928018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.928330] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.928453] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 7999.928700] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.956900] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 7999.968020] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 7999.968330] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.968455] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 7999.968702] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7999.997400] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.008019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.008331] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.008455] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.008702] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.037381] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.056018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.056332] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.056456] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.056704] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.085762] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.096220] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.096459] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.096583] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.096829] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.125609] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.136024] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.136335] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.136459] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.136706] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.165803] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.176028] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.176561] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.176712] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.176957] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.205819] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.216018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.216337] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.216464] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.216714] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.245933] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.256016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.256337] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.256462] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.256709] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.285127] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.296017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.296338] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.296463] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.296711] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.325791] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.336126] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.336340] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.336465] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.336712] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.365793] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.376019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.376345] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.376516] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.376714] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.405633] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.416021] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.416343] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.416467] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.416870] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.445655] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.456078] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.456345] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.456469] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.456715] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.485928] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.500019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.500345] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.500469] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fc [ 8000.500716] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.529237] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 1f [ 8000.540221] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 81 [ 8000.540472] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.540596] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< fe [ 8000.540843] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 8000.574171] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.574373] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.584173] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 8000.596022] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.596125] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.608089] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 8000.623021] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.623140] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.632895] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 8000.648033] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.648126] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.660628] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 8000.680018] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.680240] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.696241] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 8000.708511] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> 27 [ 8000.736021] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 8000.736102] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 8000.760017] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.760102] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 8000.772021] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 8000.784020] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.784102] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.796015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 8000.808015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.808104] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.820014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 8000.832014] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.832103] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.844015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 8000.856014] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.856105] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.868014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 8000.880015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.880105] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.892014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 8000.904062] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.904230] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 8000.916015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 8000.928015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.928108] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 8000.940015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 8000.952015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.952107] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 8000.964015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 8000.976015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8000.976109] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 8000.988015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 8001.000022] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 8001.000109] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 03 83 [ 8001.012016] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 8001.024209] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 34 6e 49 [ 8001.063996] (pipe 0x80000b80): IN: c0 00 00 00 0c 00 01 00 <<< 10 [ 8001.064114] (pipe 0x80000b00): OUT: 40 00 00 00 0c 00 01 00 >>> 00 [ 8001.076023] (pipe 0x80000b00): OUT: 40 00 00 00 12 00 01 00 >>> 27 Shutting down Tvtime
[ 7524.834648] em28xx driver loaded [ 7529.108018] usb 1-8: new high speed USB device using ehci_hcd and address 10 [ 7529.240798] usb 1-8: configuration #1 chosen from 1 choice [ 7529.242033] hub 1-8:1.0: USB hub found [ 7529.242157] hub 1-8:1.0: 4 ports detected [ 7529.532366] usb 1-8.4: new high speed USB device using ehci_hcd and address 11 [ 7529.646684] usb 1-8.4: configuration #1 chosen from 1 choice [ 7529.647727] em28xx: New device Leadtek WinFast TV USB II Deluxe @ 480 Mbps (0413:6023, interface 0, class 0) [ 7529.647733] (pipe 0x80000b80): IN: c0 00 00 00 0a 00 01 00 <<< 12 [ 7529.649354] em28xx #0: chip ID is em2820 (or em2710) [ 7529.649357] (pipe 0x80000b80): IN: c0 00 00 00 04 00 01 00 <<< 00 [ 7529.651588] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> 27 [ 7529.660021] (pipe 0x80000b00): OUT: 40 00 00 00 06 00 01 00 >>> 40 [ 7529.728013] (pipe 0x80000b00): OUT: 40 00 00 00 06 00 01 00 >>> 40 [ 7529.740058] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 01 00 <<< 34 [ 7529.740372] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.740705] (pipe 0x80000b00): OUT: 40 02 00 00 a0 00 01 00 >>> 00 [ 7529.752245] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 1a eb 67 95 13 04 23 60 14 00 1e 03 7c 34 6a 12 [ 7529.753742] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.753859] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 06 57 00 00 00 00 30 3e b0 60 03 03 03 03 [ 7529.755239] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.755359] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 1e 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.756865] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.756984] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 20 40 20 80 02 20 01 01 00 00 00 00 00 00 [ 7529.758488] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.758608] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.759988] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.760114] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.761615] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.761734] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 12 03 4c 00 65 00 [ 7529.763114] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.763234] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 61 00 64 00 74 00 65 00 6b 00 00 00 34 03 57 00 [ 7529.764742] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.764859] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 69 00 6e 00 46 00 61 00 73 00 74 00 20 00 54 00 [ 7529.766239] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.766359] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 56 00 20 00 55 00 53 00 42 00 20 00 49 00 49 00 [ 7529.767864] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.767984] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 20 00 44 00 65 00 6c 00 75 00 78 00 65 00 00 00 [ 7529.769492] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.769609] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.770990] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.771109] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.772618] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.772734] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.774113] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.774234] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.775738] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.775859] (pipe 0x80000b80): IN: c0 02 00 00 a0 00 10 00 <<< 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777242] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.777359] em28xx #0: i2c eeprom 00: 1a eb 67 95 13 04 23 60 14 00 1e 03 7c 34 6a 12 [ 7529.777366] em28xx #0: i2c eeprom 10: 00 00 06 57 00 00 00 00 30 3e b0 60 03 03 03 03 [ 7529.777372] em28xx #0: i2c eeprom 20: 1e 00 01 01 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777379] em28xx #0: i2c eeprom 30: 00 00 20 40 20 80 02 20 01 01 00 00 00 00 00 00 [ 7529.777385] em28xx #0: i2c eeprom 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777391] em28xx #0: i2c eeprom 50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777397] em28xx #0: i2c eeprom 60: 00 00 00 00 00 00 00 00 00 00 12 03 4c 00 65 00 [ 7529.777403] em28xx #0: i2c eeprom 70: 61 00 64 00 74 00 65 00 6b 00 00 00 34 03 57 00 [ 7529.777410] em28xx #0: i2c eeprom 80: 69 00 6e 00 46 00 61 00 73 00 74 00 20 00 54 00 [ 7529.777416] em28xx #0: i2c eeprom 90: 56 00 20 00 55 00 53 00 42 00 20 00 49 00 49 00 [ 7529.777422] em28xx #0: i2c eeprom a0: 20 00 44 00 65 00 6c 00 75 00 78 00 65 00 00 00 [ 7529.777428] em28xx #0: i2c eeprom b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777435] em28xx #0: i2c eeprom c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777441] em28xx #0: i2c eeprom d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777447] em28xx #0: i2c eeprom e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777453] em28xx #0: i2c eeprom f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 [ 7529.777460] em28xx #0: EEPROM ID= 0x9567eb1a, EEPROM hash = 0xa21de2b2 [ 7529.777462] em28xx #0: EEPROM info: [ 7529.777463] em28xx #0: AC97 audio (5 sample rates) [ 7529.777465] em28xx #0: USB Self power capable [ 7529.777466] em28xx #0: 500mA max power [ 7529.777468] em28xx #0: Table at 0x06, strings=0x347c, 0x126a, 0x0000 [ 7529.777472] (pipe 0x80000b80): IN: c0 02 00 00 60 00 01 00 <<< 00 [ 7529.777609] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7529.777734] (pipe 0x80000b80): IN: c0 02 00 00 8e 00 01 00 <<< 10 [ 7529.777859] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7529.777984] em28xx #0: Identified as Leadtek Winfast USB II Deluxe (card=28) [ 7529.777986] em28xx #0: [ 7529.777987] [ 7529.777989] em28xx #0: The support for this board weren't valid yet. [ 7529.777991] em28xx #0: Please send a report of having this working [ 7529.777992] em28xx #0: not to V4L mailing list (and/or to other addresses) [ 7529.777994] [ 7529.779033] (pipe 0x80000b80): IN: c0 02 00 00 4a 00 01 00 <<< 10 [ 7529.779236] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7529.779360] (pipe 0x80000b80): IN: c0 02 00 00 48 00 01 00 <<< 10 [ 7529.779721] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7529.779860] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 01 [ 7529.780118] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.780291] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 00 [ 7529.792020] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.804017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 01 [ 7529.804360] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.804485] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 01 [ 7529.816016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.828015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 0f [ 7529.828235] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.828361] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 02 [ 7529.840018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.852017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 07 [ 7529.852361] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.852485] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 03 [ 7529.864016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.876016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 01 [ 7529.876236] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.876361] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 04 [ 7529.888017] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.900018] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 01 [ 7529.900362] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.900487] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 05 [ 7529.912016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.924016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 04 [ 7529.924237] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.924362] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 06 [ 7529.936016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.948015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 0d [ 7529.948237] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.948363] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 07 [ 7529.960018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.972017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7529.972238] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.972363] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 08 [ 7529.984016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7529.996016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 0e [ 7529.996238] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7529.996364] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 09 [ 7530.008018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.020016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.020239] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.020364] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 0a [ 7530.032017] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.044052] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.044365] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.044489] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 0b [ 7530.056017] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.068015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.068365] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.068489] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 0c [ 7530.080018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.092017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.092366] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.092490] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 0d [ 7530.104015] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.116016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.116366] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.116490] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 00 0e [ 7530.128018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 00 [ 7530.140015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7530.140366] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7530.140492] saa7115 0-0021: saa7114 found (1f7114d0e000000) @ 0x42 (em28xx #0) [ 7530.140496] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 01 48 [ 7530.152018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 03 20 [ 7530.164015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 04 90 [ 7530.176016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 05 90 [ 7530.188016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 06 eb [ 7530.200019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 07 e0 [ 7530.212025] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 09 53 [ 7530.224017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0a 80 [ 7530.236016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0b 44 [ 7530.248016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0c 40 [ 7530.260016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0d 00 [ 7530.272018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0f 00 [ 7530.284017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 10 06 [ 7530.296024] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 11 00 [ 7530.308017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 12 9d [ 7530.320016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 13 80 [ 7530.332016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 14 00 [ 7530.344018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 18 40 [ 7530.356018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 19 80 [ 7530.368015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 80 00 [ 7530.380016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7530.392017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7530.404018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 83 01 [ 7530.416016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 84 20 [ 7530.428016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 85 21 [ 7530.440031] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 86 c5 [ 7530.452015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 01 [ 7530.464016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a0 01 [ 7530.476017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a1 00 [ 7530.488075] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a2 00 [ 7530.500016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a4 80 [ 7530.512020] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a5 40 [ 7530.524018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a6 40 [ 7530.536016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a8 00 [ 7530.548015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> a9 02 [ 7530.560016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> aa 00 [ 7530.572016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ac 00 [ 7530.584015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ad 01 [ 7530.596017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ae 00 [ 7530.608015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b0 00 [ 7530.620018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b1 04 [ 7530.632015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b2 00 [ 7530.644019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b3 04 [ 7530.656016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b4 01 [ 7530.668017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b8 00 [ 7530.680016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> b9 00 [ 7530.692016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ba 00 [ 7530.704018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> bb 00 [ 7530.716018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> bc 00 [ 7530.728016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> bd 00 [ 7530.740016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> be 00 [ 7530.752016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> bf 00 [ 7530.764016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d0 01 [ 7530.776016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d1 00 [ 7530.788019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d2 00 [ 7530.800016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d4 80 [ 7530.812025] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d5 40 [ 7530.824054] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d6 40 [ 7530.836022] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d8 00 [ 7530.848016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d9 04 [ 7530.860018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> da 00 [ 7530.872015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> dc 00 [ 7530.884016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> dd 02 [ 7530.896018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> de 00 [ 7530.908017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e0 00 [ 7530.920017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e1 04 [ 7530.932016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e2 00 [ 7530.944016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e3 04 [ 7530.956017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e4 01 [ 7530.968016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e8 00 [ 7530.980018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e9 00 [ 7530.992016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ea 00 [ 7531.004020] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> eb 00 [ 7531.016019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ec 00 [ 7531.028018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ed 00 [ 7531.040016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ee 00 [ 7531.052016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ef 00 [ 7531.064016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 40 20 [ 7531.076024] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 41 ff [ 7531.088017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 42 ff [ 7531.100018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 43 ff [ 7531.112025] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 44 ff [ 7531.124016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 45 ff [ 7531.136018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 46 ff [ 7531.148018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 47 ff [ 7531.160016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 48 ff [ 7531.172017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 49 ff [ 7531.184015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4a ff [ 7531.196016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4b ff [ 7531.208016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4c ff [ 7531.220016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4d ff [ 7531.232016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4e ff [ 7531.244018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 4f ff [ 7531.256016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 50 ff [ 7531.268017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 51 ff [ 7531.280021] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 52 ff [ 7531.292016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 53 ff [ 7531.304052] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 54 ff [ 7531.316020] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 55 ff [ 7531.328019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 56 ff [ 7531.340017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 57 ff [ 7531.352015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 58 40 [ 7531.364015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 59 47 [ 7531.376016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 5b 83 [ 7531.388238] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 5d bd [ 7531.400016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 5e 35 [ 7531.412017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 02 84 [ 7531.424016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 80 20 [ 7531.436016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7531.448019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7531.460016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 80 00 [ 7531.472048] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7531.484019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 15 03 [ 7531.496016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 16 11 [ 7531.508016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 17 9c [ 7531.520019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 08 28 [ 7531.532018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 0e 07 [ 7531.544022] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 5a 06 [ 7531.556017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 90 80 [ 7531.568016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 91 48 [ 7531.580016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 92 40 [ 7531.592016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 93 84 [ 7531.604018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 94 01 [ 7531.616016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 95 00 [ 7531.628024] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 96 d0 [ 7531.640015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 97 02 [ 7531.652017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 98 05 [ 7531.664015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 99 00 [ 7531.676016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9a 0c [ 7531.688023] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9b 00 [ 7531.700019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9c a0 [ 7531.712027] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9d 05 [ 7531.724018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9e 0c [ 7531.736158] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 9f 00 [ 7531.748016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c0 00 [ 7531.760016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c1 08 [ 7531.772017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c2 00 [ 7531.784018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c3 80 [ 7531.796019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c4 02 [ 7531.808016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c5 00 [ 7531.820016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c6 d0 [ 7531.832019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c7 02 [ 7531.844018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c8 12 [ 7531.856018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> c9 00 [ 7531.868018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ca f8 [ 7531.880016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cb 00 [ 7531.892018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cc d0 [ 7531.904078] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cd 02 [ 7531.916019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cc d0 [ 7531.928021] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cd 02 [ 7531.940017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> ce f8 [ 7531.952052] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> cf 00 [ 7531.964020] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d0 01 [ 7531.976016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d8 00 [ 7531.988016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d9 04 [ 7532.000036] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> dc 00 [ 7532.012060] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> dd 02 [ 7532.024016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d5 40 [ 7532.036020] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> d6 40 [ 7532.048017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e0 00 [ 7532.060015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e1 04 [ 7532.072016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e2 00 [ 7532.084018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> e3 04 [ 7532.096016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 00 [ 7532.108019] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7532.120018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7532.132016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 01 [ 7532.144016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 80 [ 7532.156019] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 00 [ 7532.156402] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.156527] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 80 20 [ 7532.168018] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 80 [ 7532.180016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 20 [ 7532.180403] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.180528] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 38 03 [ 7532.192015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 39 10 [ 7532.204018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 3a 00 [ 7532.216015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 30 cd [ 7532.228018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 31 20 [ 7532.240016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 32 03 [ 7532.252016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 34 ce [ 7532.264015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 35 fb [ 7532.276017] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 36 30 [ 7532.289070] (pipe 0x80000b80): IN: c0 02 00 00 84 00 01 00 <<< 36 [ 7532.289282] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7532.289405] (pipe 0x80000b80): IN: c0 02 00 00 86 00 01 00 <<< 8f [ 7532.289654] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.289895] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 01 00 >>> 00 [ 7532.300034] (pipe 0x80000b80): IN: c0 02 00 00 86 00 08 00 <<< 8e 8e 8e 8e 8e 8e 8e 8e [ 7532.300910] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.301111] tuner 0-0043: chip found @ 0x86 (em28xx #0) [ 7532.301179] tda9887 0-0043: creating new instance [ 7532.301181] tda9887 0-0043: tda988[5/6/7] found [ 7532.301185] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 c0 00 00 [ 7532.313059] (pipe 0x80000b80): IN: c0 02 00 00 c0 00 01 00 <<< 00 [ 7532.313283] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 10 [ 7532.313405] (pipe 0x80000b80): IN: c0 02 00 00 c2 00 01 00 <<< b1 [ 7532.313654] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.313813] tuner 0-0061: chip found @ 0xc2 (em28xx #0) [ 7532.313899] (pipe 0x80000b80): IN: c0 02 00 00 c2 00 01 00 <<< 31 [ 7532.314184] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.314580] tuner-simple 0-0061: creating new instance [ 7532.314583] tuner-simple 0-0061: type set to 38 (Philips PAL/SECAM multi (FM1216ME MK3)) [ 7532.314590] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 00 0e 00 [ 7532.324027] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 1b 6f 8e 02 [ 7532.336018] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 c0 00 00 [ 7532.348016] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 c0 00 00 [ 7532.360019] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 00 00 00 [ 7532.372016] (pipe 0x80000b00): OUT: 40 02 00 00 c2 00 04 00 >>> 25 e3 8e 04 [ 7532.384016] (pipe 0x80000b80): IN: c0 00 00 00 00 00 01 00 <<< 14 [ 7532.384281] em28xx #0: Config register raw data: 0x14 [ 7532.384283] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.384406] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> fc [ 7532.396017] (pipe 0x80000b80): IN: c0 00 00 00 40 00 02 00 <<< ff ff [ 7532.396282] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.396406] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> fe [ 7532.408023] (pipe 0x80000b80): IN: c0 00 00 00 40 00 02 00 <<< ff ff [ 7532.408619] em28xx #0: AC97 vendor ID = 0xffffffff [ 7532.408622] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.408657] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 80 [ 7532.420025] (pipe 0x80000b80): IN: c0 00 00 00 40 00 02 00 <<< 90 6a [ 7532.420284] em28xx #0: AC97 features = 0x6a90 [ 7532.420286] em28xx #0: Empia 202 AC97 audio processor detected [ 7532.420289] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.420405] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.439053] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7532.452015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.452162] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.464015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7532.479047] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.479416] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.488018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7532.504577] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.504698] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.516022] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7532.532389] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.532882] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.552014] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7532.564025] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7532.592015] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< 80 [ 7532.592166] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c0 [ 7532.616012] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.616164] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7532.628094] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7532.640016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.640161] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.652015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7532.664019] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.664161] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.676017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7532.688015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.688161] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.700015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7532.712016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.712162] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.724016] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7532.736015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.736162] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.748017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7532.760016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.760163] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7532.772015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7532.784018] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.784163] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7532.796017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7532.808015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.808164] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7532.820016] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7532.832016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7532.832164] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7532.844015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7532.856018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 00 [ 7532.868018] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7532.880030] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7532.892015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 01 [ 7532.904104] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 02 [ 7532.916017] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 84 [ 7532.916292] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.916417] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 02 84 [ 7532.928016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 09 [ 7532.940015] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 53 [ 7532.940416] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.940542] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 09 53 [ 7532.952016] (pipe 0x80000b00): OUT: 40 03 00 00 42 00 01 00 >>> 83 [ 7532.964016] (pipe 0x80000b80): IN: c0 02 00 00 42 00 01 00 <<< 01 [ 7532.964292] (pipe 0x80000b80): IN: c0 00 00 00 05 00 01 00 <<< 00 [ 7532.964417] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 83 00 [ 7532.976016] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 00 [ 7532.988018] em28xx #0: v4l2 driver version 0.1.2 [ 7532.988203] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< ea [ 7532.988293] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7533.000040] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7533.012018] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7533.024015] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7533.036017] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7533.048015] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7533.060017] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7533.072016] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7533.084015] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7533.096015] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7533.108017] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7533.120018] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7533.132017] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7533.144016] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7533.156018] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< fb [ 7533.156170] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> cb [ 7533.168017] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.168170] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.180017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7533.192016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.192174] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.204019] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 04 [ 7533.216015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.216171] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.228017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 06 [ 7533.240015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.240171] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.252018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 36 [ 7533.264016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.264172] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.276015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 38 [ 7533.288015] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> a7 [ 7533.316012] (pipe 0x80000b80): IN: c0 00 00 00 0e 00 01 00 <<< c6 [ 7533.316178] (pipe 0x80000b00): OUT: 40 00 00 00 0e 00 01 00 >>> c6 [ 7533.340011] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.340177] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 08 08 [ 7533.352017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 14 [ 7533.364016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.364174] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.376015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 10 [ 7533.388015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.388174] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.400017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0c [ 7533.412016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.412174] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.424015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 0e [ 7533.436016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.436175] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.448015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 12 [ 7533.460015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.460176] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.472018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 16 [ 7533.484018] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.484176] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 80 [ 7533.496016] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 18 [ 7533.508020] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.508178] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 00 42 [ 7533.520017] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 26 [ 7533.532019] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.532177] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 31 00 [ 7533.544015] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 2a [ 7533.556015] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.556177] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 80 bb [ 7533.568016] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 32 [ 7533.580016] (pipe 0x80000b80): IN: c0 00 00 00 43 00 01 00 <<< 00 [ 7533.580178] (pipe 0x80000b00): OUT: 40 00 00 00 40 00 02 00 >>> 1f 1f [ 7533.592018] (pipe 0x80000b00): OUT: 40 00 00 00 42 00 01 00 >>> 02 [ 7533.604022] (pipe 0x80000b80): IN: c0 00 00 00 0f 00 01 00 <<< 87 [ 7533.604180] (pipe 0x80000b00): OUT: 40 00 00 00 0f 00 01 00 >>> 87 [ 7533.616016] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7533.616178] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7533.628018] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7533.640017] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7533.652019] (pipe 0x80000b00): OUT: 40 00 00 00 20 00 01 00 >>> 10 [ 7533.664015] (pipe 0x80000b00): OUT: 40 00 00 00 21 00 01 00 >>> 00 [ 7533.676015] (pipe 0x80000b00): OUT: 40 00 00 00 22 00 01 00 >>> 10 [ 7533.688015] (pipe 0x80000b00): OUT: 40 00 00 00 23 00 01 00 >>> 00 [ 7533.700015] (pipe 0x80000b00): OUT: 40 00 00 00 24 00 01 00 >>> 00 [ 7533.712019] (pipe 0x80000b00): OUT: 40 00 00 00 25 00 01 00 >>> 00 [ 7533.724017] (pipe 0x80000b00): OUT: 40 00 00 00 14 00 01 00 >>> 20 [ 7533.736052] (pipe 0x80000b00): OUT: 40 00 00 00 15 00 01 00 >>> 20 [ 7533.748016] (pipe 0x80000b00): OUT: 40 00 00 00 16 00 01 00 >>> 20 [ 7533.760015] (pipe 0x80000b00): OUT: 40 00 00 00 17 00 01 00 >>> 20 [ 7533.772015] (pipe 0x80000b00): OUT: 40 00 00 00 18 00 01 00 >>> 00 [ 7533.784015] (pipe 0x80000b00): OUT: 40 00 00 00 19 00 01 00 >>> 00 [ 7533.796017] (pipe 0x80000b00): OUT: 40 00 00 00 1a 00 01 00 >>> 00 [ 7533.808016] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7533.820073] em28xx #0: V4L2 video device registered as /dev/video0 [ 7533.820079] (pipe 0x80000b00): OUT: 40 02 00 00 86 00 04 00 >>> 00 20 00 00 [ 7533.832386] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7533.836606] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7533.848229] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7533.861036] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7533.872031] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7533.884032] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7533.900154] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7533.917277] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7533.928028] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7533.940010] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7533.952012] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7533.964015] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7533.976010] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7533.988017] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7534.000015] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7534.012012] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< 00 [ 7534.012186] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7534.024013] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 00 [ 7534.036011] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7534.048012] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7534.060012] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 01 [ 7534.072054] (pipe 0x80000b80): IN: c0 00 00 00 0c 00 01 00 <<< 00 [ 7534.072187] (pipe 0x80000b00): OUT: 40 00 00 00 0c 00 01 00 >>> 00 [ 7534.084011] (pipe 0x80000b00): OUT: 40 00 00 00 12 00 01 00 >>> 27 [ 7534.101389] (pipe 0x80000b80): IN: c0 00 00 00 27 00 01 00 <<< 34 [ 7534.101439] (pipe 0x80000b00): OUT: 40 00 00 00 27 00 01 00 >>> 34 [ 7534.112011] (pipe 0x80000b00): OUT: 40 00 00 00 10 00 01 00 >>> 10 [ 7534.124013] (pipe 0x80000b00): OUT: 40 00 00 00 11 00 01 00 >>> 11 [ 7534.136012] (pipe 0x80000b00): OUT: 40 00 00 00 28 00 01 00 >>> 01 [ 7534.148014] (pipe 0x80000b00): OUT: 40 00 00 00 29 00 01 00 >>> b3 [ 7534.160020] (pipe 0x80000b00): OUT: 40 00 00 00 2a 00 01 00 >>> 01 [ 7534.172010] (pipe 0x80000b00): OUT: 40 00 00 00 2b 00 01 00 >>> 8f [ 7534.184010] (pipe 0x80000b00): OUT: 40 00 00 00 1c 00 01 00 >>> 00 [ 7534.196010] (pipe 0x80000b00): OUT: 40 00 00 00 1d 00 01 00 >>> 00 [ 7534.208016] (pipe 0x80000b00): OUT: 40 00 00 00 1e 00 01 00 >>> b4 [ 7534.220010] (pipe 0x80000b00): OUT: 40 00 00 00 1f 00 01 00 >>> 90 [ 7534.232012] (pipe 0x80000b00): OUT: 40 00 00 00 1b 00 01 00 >>> 00 [ 7534.244010] (pipe 0x80000b00): OUT: 40 00 00 00 30 00 02 00 >>> 00 00 [ 7534.256012] (pipe 0x80000b00): OUT: 40 00 00 00 32 00 02 00 >>> 00 00 [ 7534.268011] (pipe 0x80000b80): IN: c0 00 00 00 26 00 01 00 <<< 00 [ 7534.268065] (pipe 0x80000b00): OUT: 40 00 00 00 26 00 01 00 >>> 00 [ 7534.280015] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 00 [ 7534.292011] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 d0 [ 7534.304012] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 88 f0 [ 7534.316012] (pipe 0x80000b00): OUT: 40 02 00 00 42 00 02 00 >>> 87 01 [ 7534.328791] (pipe 0x80000b80): IN: c0 00 00 00 0c 00 01 00 <<< 00 [ 7534.328942] (pipe 0x80000b00): OUT: 40 00 00 00 0c 00 01 00 >>> 00 [ 7534.340014] (pipe 0x80000b00): OUT: 40 00 00 00 12 00 01 00 >>> 27