From patchwork Thu Oct 15 10:06:42 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: BruceChang@via.com.tw X-Patchwork-Id: 36105 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id EBA4EB7334 for ; Thu, 15 Oct 2009 21:07:25 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.60) (envelope-from ) id 1MyNEp-0002Wz-MX; Thu, 15 Oct 2009 11:07:15 +0100 Received: from exchtp08.via.com.tw ([61.66.243.7]) by chlorine.canonical.com with esmtp (Exim 4.60) (envelope-from ) id 1MyNEO-0002PZ-L6 for kernel-team@lists.ubuntu.com; Thu, 15 Oct 2009 11:06:48 +0100 Received: from exchtp12.taipei.via.com.tw ([192.168.254.222]) by exchtp08.via.com.tw with Microsoft SMTPSVC(6.0.3790.3959); Thu, 15 Oct 2009 18:06:42 +0800 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Subject: [Patch 1/1] Add support for VT6330 Date: Thu, 15 Oct 2009 18:06:42 +0800 Message-ID: <62692B81D079DA49BA9287A3CDF6B41C9FD730@exchtp12.taipei.via.com.tw> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [Patch 1/1] Add support for VT6330 Thread-Index: AcpNfzHW2JkAGbSETS+guJHE0gbTAQ== From: To: X-OriginalArrivalTime: 15 Oct 2009 10:06:42.0493 (UTC) FILETIME=[31C91ED0:01CA4D7F] Cc: JosephChan@via.com.tw X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.8 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com To whom it may concern: I would like to request to add support of VT6330 chipset in Ubuntu 9.10. VT6330 is similar to VT6415. The patch has been submitted for upstream at http://marc.info/?l=linux-ide&m=125559436426187&w=2. Following is the patch based on Ubuntu 9.10 beta(2.6.31-11). It's very simple, just extend the rev_max of VT6415. Sign-off by Bruce Chang Thanks and Best Regards ================================================= Bruce C. Chang(張祖明) VIA Technologies, Inc. Address: 1F, 531, Chung-Cheng Road, Hsin-Tien, 231 Taipei Tel: +886-2-22185452 Ext 7323 Mobile: +886-968343824 Fax: +886-2-22186282 Skype: Bruce.C.Chang Email: BruceChang@via.com.tw --- a/drivers/ata/pata_via.c 2009-10-15 17:23:53.542707104 +0800 +++ b/drivers/ata/pata_via.c 2009-10-15 17:24:10.742768910 +0800 @@ -111,7 +111,7 @@ { "vt8251", PCI_DEVICE_ID_VIA_8251, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, { "cx700", PCI_DEVICE_ID_VIA_CX700, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_SATA_PATA }, { "vt6410", PCI_DEVICE_ID_VIA_6410, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_NO_ENABLES }, - { "vt6415", PCI_DEVICE_ID_VIA_6415, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST | VIA_NO_ENABLES }, + { "vt6415", PCI_DEVICE_ID_VIA_6415, 0x00, 0xff, VIA_UDMA_133 | VIA_BAD_AST | VIA_NO_ENABLES }, { "vt8237a", PCI_DEVICE_ID_VIA_8237A, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, { "vt8237", PCI_DEVICE_ID_VIA_8237, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST }, { "vt8235", PCI_DEVICE_ID_VIA_8235, 0x00, 0x2f, VIA_UDMA_133 | VIA_BAD_AST },