<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c4b9c570 - USB: serial: simple: add Nokia phone driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#c4b9c570</link>
        <description>USB: serial: simple: add Nokia phone driverAdd a new &quot;simple&quot; driver for certain Nokia phones, including Nokia 130(RM-1035) which exposes two serial ports in &quot;charging only&quot; mode:Bus 001 Device 009: ID 0421:069a Nokia Mobile Phones 130 [RM-1035] (Charging only)Device Descriptor:  bLength                18  bDescriptorType         1  bcdUSB               2.00  bDeviceClass            0  bDeviceSubClass         0  bDeviceProtocol         0  bMaxPacketSize0         8  idVendor           0x0421 Nokia Mobile Phones  idProduct          0x069a 130 [RM-1035] (Charging only)  bcdDevice            1.00  iManufacturer           1 Nokia  iProduct                2 Nokia 130 (RM-1035)  iSerial                 0  bNumConfigurations      1  Configuration Descriptor:    bLength                 9    bDescriptorType         2    wTotalLength       0x0037    bNumInterfaces          2    bConfigurationValue     1    iConfiguration          0    bmAttributes         0x80      (Bus Powered)    MaxPower              500mA    Interface Descriptor:      bLength                 9      bDescriptorType         4      bInterfaceNumber        0      bAlternateSetting       0      bNumEndpoints           2      bInterfaceClass       255 Vendor Specific Class      bInterfaceSubClass    255 Vendor Specific Subclass      bInterfaceProtocol    255 Vendor Specific Protocol      iInterface              0      Endpoint Descriptor:        bLength                 7        bDescriptorType         5        bEndpointAddress     0x81  EP 1 IN        bmAttributes            2          Transfer Type            Bulk          Synch Type               None          Usage Type               Data        wMaxPacketSize     0x0040  1x 64 bytes        bInterval               0      Endpoint Descriptor:        bLength                 7        bDescriptorType         5        bEndpointAddress     0x01  EP 1 OUT        bmAttributes            2          Transfer Type            Bulk          Synch Type               None          Usage Type               Data        wMaxPacketSize     0x0040  1x 64 bytes        bInterval               0    Interface Descriptor:      bLength                 9      bDescriptorType         4      bInterfaceNumber        1      bAlternateSetting       0      bNumEndpoints           2      bInterfaceClass       255 Vendor Specific Class      bInterfaceSubClass    255 Vendor Specific Subclass      bInterfaceProtocol    255 Vendor Specific Protocol      iInterface              0      Endpoint Descriptor:        bLength                 7        bDescriptorType         5        bEndpointAddress     0x82  EP 2 IN        bmAttributes            2          Transfer Type            Bulk          Synch Type               None          Usage Type               Data        wMaxPacketSize     0x0040  1x 64 bytes        bInterval               0      Endpoint Descriptor:        bLength                 7        bDescriptorType         5        bEndpointAddress     0x02  EP 2 OUT        bmAttributes            2          Transfer Type            Bulk          Synch Type               None          Usage Type               Data        wMaxPacketSize     0x0040  1x 64 bytes        bInterval               0Device Status:     0x0000  (Bus Powered)Cc: stable@vger.kernel.orgLink: https://lore.kernel.org/r/20220228084919.10656-1-johan@kernel.orgSigned-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 28 Feb 2022 08:49:19 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c2d405aa - USB: serial: add MaxLinear/Exar USB to Serial driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#c2d405aa</link>
        <description>USB: serial: add MaxLinear/Exar USB to Serial driverAdd support for MaxLinear/Exar USB to Serial converters. This driveronly supports XR21V141X series but it can be extended to other seriesfrom Exar as well in future.This driver is inspired from the initial one submitted by Patong Yang:https://lore.kernel.org/r/20180404070634.nhspvmxcjwfgjkcv@advantechmxl-desktopWhile the initial driver was a custom tty USB driver exposing wholenew serial interface ttyXRUSBn, this version is completely based on USBserial core thus exposing the interfaces as ttyUSBn. This will avoidthe overhead of exposing a new USB serial interface which the userspacetools are unaware of.The Exar XR21V141X can be used in either ACM mode using the cdc-acmdriver or in &quot;custom driver&quot; mode in which further features such ashardware and software flow control, GPIO control and in-band line-statusreporting are available.In ACM mode the device always enables RTS/CTS flow control, somethingwhich could prevent transmission in case the CTS input isn&apos;t wired upcorrently.A follow-on patch will prevent cdc_acm from binding whenever this driveris enabled.Signed-off-by: Manivannan Sadhasivam &lt;mani@kernel.org&gt;Link: https://lore.kernel.org/r/20201122170822.21715-2-mani@kernel.org[ johan: fix some style nits, group related functions, drop unused	 callbacks, and amend commit message; a few remaining	 non-trivial issues will be fixed separately ]Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Sun, 22 Nov 2020 17:08:20 +0000</pubDate>
        <dc:creator>Manivannan Sadhasivam &lt;mani@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7604ce70 - USB: serial: keyspan_pda: clean up xircom/entrega support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#7604ce70</link>
        <description>USB: serial: keyspan_pda: clean up xircom/entrega supportDrop the separate Kconfig symbol for Xircom / Entrega and always includesupport in the keyspan_pda driver.Note that all configs that enabled CONFIG_USB_SERIAL_XIRCOM also enableCONFIG_USB_SERIAL_KEYSPAN_PDA.Acked-by: Sebastian Andrzej Siewior &lt;bigeasy@linutronix.de&gt;Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Tue, 27 Oct 2020 09:25:02 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>145e6dd8 - usb: drop comment about 2 uhci drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#145e6dd8</link>
        <description>usb: drop comment about 2 uhci driversDrop the ancient comment about 2 usb/uhci drivers since there areno longer 2 of them.Cc: Johan Hovold &lt;johan@kernel.org&gt;Cc: linux-usb@vger.kernel.orgSigned-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: https://lore.kernel.org/r/5f93d906-4f5c-2a78-c1c7-36cf07e94bcc@infradead.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Fri, 22 Nov 2019 16:49:04 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>0b2c26fb - usb: serial: Fix Kconfig indentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#0b2c26fb</link>
        <description>usb: serial: Fix Kconfig indentationAdjust indentation from spaces to tab (+optional two spaces) as incoding style with command like:	$ sed -e &apos;s/^        /\t/&apos; -i */KconfigSigned-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Link: https://lore.kernel.org/r/20191121132856.29130-1-krzk@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Thu, 21 Nov 2019 13:28:56 +0000</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c2c1c66b - usb: Fix Kconfig indentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#c2c1c66b</link>
        <description>usb: Fix Kconfig indentationAdjust indentation from spaces to tab (+optional two spaces) as incoding style with command like:    $ sed -e &apos;s/^        /\t/&apos; -i */KconfigSigned-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Acked-by: Johan Hovold &lt;johan@kernel.org&gt;Link: https://lore.kernel.org/r/20190923154956.6868-1-krzk@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 23 Sep 2019 15:49:56 +0000</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ecefae6d - docs: usb: rename files to .rst and add them to drivers-api</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#ecefae6d</link>
        <description>docs: usb: rename files to .rst and add them to drivers-apiWhile there are a mix of things here, most of the stuffwere written from Kernel developer&apos;s PoV. So, add them tothe driver-api book.A follow up for this patch would be to move documents fromthere that are specific to sysadmins, adding them to theadmin-guide.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;Acked-by: Johan Hovold &lt;johan@kernel.org&gt;Acked-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Tue, 18 Jun 2019 21:05:38 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>cae8dc3b - USB: add missing SPDX lines to Kconfig and Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#cae8dc3b</link>
        <description>USB: add missing SPDX lines to Kconfig and MakefilesThere are a few remaining drivers/usb/ files that do not have SPDXidentifiers in them, all of these are either Kconfig or Makefiles.  Addthe correct GPL-2.0 identifier to them to make scanning tools happy.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Thu, 17 Jan 2019 08:23:50 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>fe710508 - USB: serial: simple: add libtransistor console</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#fe710508</link>
        <description>USB: serial: simple: add libtransistor consoleAdd simple driver for libtransistor USB console.This device is implemented in software:https://github.com/reswitched/libtransistor/blob/development/lib/usb_serial.cSigned-off-by: Collin May &lt;collin@collinswebsite.com&gt;Cc: stable &lt;stable@vger.kernel.org&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Sat, 07 Apr 2018 21:32:48 +0000</pubDate>
        <dc:creator>Collin May &lt;collin@collinswebsite.com&gt;</dc:creator>
    </item>
<item>
        <title>003948c5 - USB: serial: keyspan: Drop firmware Kconfig options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#003948c5</link>
        <description>USB: serial: keyspan: Drop firmware Kconfig optionsThe USB_SERIAL_KEYSPAN_* firmware options no longer do anything.Fixes: 5620a0d1aacd (&quot;firmware: delete in-kernel firmware&quot;)Signed-off-by: Benjamin Gilbert &lt;benjamin.gilbert@coreos.com&gt;Cc: Johan Hovold &lt;johan@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Wed, 24 Jan 2018 02:06:30 +0000</pubDate>
        <dc:creator>Benjamin Gilbert &lt;benjamin.gilbert@coreos.com&gt;</dc:creator>
    </item>
<item>
        <title>46fe895e - USB: serial: simple: add Motorola Tetra driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#46fe895e</link>
        <description>USB: serial: simple: add Motorola Tetra driverAdd new Motorola Tetra (simple) driver for Motorola Solutions TETRA PEIdevices.D:  Ver= 2.00 Cls=00(&gt;ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1P:  Vendor=0cad ProdID=9011 Rev=24.16S:  Manufacturer=Motorola Solutions Inc.S:  Product=Motorola Solutions TETRA PEI interfaceC:  #Ifs= 2 Cfg#= 1 Atr=80 MxPwr=500mAI:  If#= 0 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=00 Prot=00 Driver=(none)I:  If#= 1 Alt= 0 #EPs= 2 Cls=ff(vend.) Sub=00 Prot=00 Driver=(none)Note that these devices do not support the CDC SET_CONTROL_LINE_STATErequest (for any interface).Reported-by: Max Schulze &lt;max.schulze@posteo.de&gt;Tested-by: Max Schulze &lt;max.schulze@posteo.de&gt;Cc: stable &lt;stable@vger.kernel.org&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Thu, 18 Jan 2018 03:46:41 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ea534e0b - USB: serial: add uPD78F0730 USB to Serial Adaptor Driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#ea534e0b</link>
        <description>USB: serial: add uPD78F0730 USB to Serial Adaptor DriverThe adaptor can be found on development boards for 78k, RL78 and V850microcontrollers produced by Renesas Electronics Corporation.This is not a full-featured USB to serial converter, however it allowsbasic communication and simple control which is enough for programming ofon-board flash and debugging through a debug monitor.uPD78F0730 is a USB-enabled microcontroller with USB-to-UART conversionimplemented in firmware.This chip is also present in some debugging adaptors which use it forUSB-to-SPI conversion as well. The present driver doesn&apos;t cover SPI,only USB-to-UART conversion is supported.Signed-off-by: Maksim Salau &lt;maksim.salau@gmail.com&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Wed, 25 Jan 2017 20:40:40 +0000</pubDate>
        <dc:creator>Maksim Salau &lt;maksim.salau@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0c9bd600 - USB: serial: add Fintek F81532/534 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#0c9bd600</link>
        <description>USB: serial: add Fintek F81532/534 driverThis driver is for Fintek F81532/F81534 USB to Serial Ports IC.F81532 spec:https://drive.google.com/file/d/0B8vRwwYO7aMFOTRRMmhWQVNvajQ/view?usp=sharingF81534 spec:https://drive.google.com/file/d/0B8vRwwYO7aMFV29pQWJqbVBNc00/view?usp=sharingFeatures:1. F81532 is 1-to-2 &amp; F81534 is 1-to-4 serial ports IC2. Support Baudrate from B50 to B115200.Signed-off-by: Ji-Ze Hong (Peter Hong) &lt;hpeter+linux_kernel@gmail.com&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 14 Nov 2016 05:37:59 +0000</pubDate>
        <dc:creator>Ji-Ze Hong (Peter Hong) &lt;hpeter@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>537b8a86 - Revert &quot;USB: serial: add Moxa UPORT 11x0 driver&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#537b8a86</link>
        <description>Revert &quot;USB: serial: add Moxa UPORT 11x0 driver&quot;This reverts commit 0b2b093ad405b56a9e6f4f20a25da77ebfa9549c.Turns out the MOXA vendor driver was basically just a copy of theti_usb_3410_5052 driver. We don&apos;t want two drivers for the same chipeven if mxu11x0 had gotten some much needed clean up before merge. Solet&apos;s remove the mxu11x0 driver, add support for these Moxa devices tothe TI driver, and then clean that driver up instead.Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 29 Feb 2016 17:56:02 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0b2b093a - USB: serial: add Moxa UPORT 11x0 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#0b2b093a</link>
        <description>USB: serial: add Moxa UPORT 11x0 driverAdd a driver which supports :- UPort 1110  : 1 port RS-232 USB to Serial Hub.- UPort 1130  : 1 port RS-422/485 USB to Serial Hub.- UPort 1130I : 1 port RS-422/485 USB to Serial Hub with Isolation.- UPort 1150  : 1 port RS-232/422/485 USB to Serial Hub.- UPort 1150I : 1 port RS-232/422/485 USB to Serial Hub with Isolation.This driver is based on GPL MOXA driver written by Hen Huang and availableon MOXA website. The original driver was based on io_ti serial driver.Signed-off-by: Mathieu OTHACEHE &lt;m.othacehe@gmail.com&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 28 Dec 2015 20:21:25 +0000</pubDate>
        <dc:creator>Mathieu OTHACEHE &lt;m.othacehe@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2d9b480b - usb/serial: fix grammar in Kconfig help text for FTDI_SIO</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#2d9b480b</link>
        <description>usb/serial: fix grammar in Kconfig help text for FTDI_SIOSigned-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Fri, 20 Mar 2015 00:24:37 +0000</pubDate>
        <dc:creator>Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>679315e5 - USB: serial: add Google simple serial SubClass support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#679315e5</link>
        <description>USB: serial: add Google simple serial SubClass supportAdd support for Google devices that export simple serialinterfaces using the vendor specific SubClass/Protocol pair0x50/0x01.Signed-off-by: Anton Staaf &lt;robotboy@chromium.org&gt;Reviewed-by: Benson Leung &lt;bleung@chromium.org&gt;[johan: move id entries and update Kconfig]Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 03 Nov 2014 16:43:20 +0000</pubDate>
        <dc:creator>Anton Staaf &lt;robotboy@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>5f9f975b - USB: serial: keyspan_pda: fix Entrega company name spelling</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#5f9f975b</link>
        <description>USB: serial: keyspan_pda: fix Entrega company name spellingEntrega is misspelled as Entregra or Entrgra, so fix that.Signed-off-by: Mark Knibbs &lt;markk@clara.co.uk&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Sat, 04 Oct 2014 11:19:59 +0000</pubDate>
        <dc:creator>Mark Knibbs &lt;markk@clara.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>f8c0e057 - USB: serial: remove zte_ev driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/serial/Kconfig#f8c0e057</link>
        <description>USB: serial: remove zte_ev driverThe zte_ev driver is based on code (once) distributed by ZTE that stillappears to originally have been reverse-engineered and bolted onto thegeneric driver.A closer analysis of the zte_ev setup code reveals that it consists ofstandard CDC requests (SET/GET_LINE_CODING and SET_CONTROL_LINE_STATE)but unfortunately fails to get some of those right. In particular, asreported by Lei Liu, it fails to lower DTR/RTS on close. It also appearsthat the control requests lack the interface argument.Since line control is already handled properly by the option driver, andthe SET/GET_LINE_CODING requests appears to be redundant (amounts to aSET 9600 8N1) let&apos;s remove the redundant zte_ev driver.Also move the remaining ZTE PIDs to the generic option modem driver.Reported-by: Lei Liu &lt;liu.lei78@zte.com.cn&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/usb/serial/Kconfig</description>
        <pubDate>Mon, 15 Sep 2014 16:40:45 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
