From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752522Ab0K0KZg (ORCPT ); Sat, 27 Nov 2010 05:25:36 -0500 Received: from mail-bw0-f46.google.com ([209.85.214.46]:45079 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752302Ab0K0KZb (ORCPT ); Sat, 27 Nov 2010 05:25:31 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; b=oBz/hWyP/7KNLZH1fhPe2QHiLcyW8HJjlRkJ+ZLheAM4lDQmyMaV57pd9vqPCcpi3r 5n+rd6yoR8q71Vy1ATcrNHSBwEV3vWLlR7hL3gFG1EXoaRgFXQLYBiiddyMxesiInzo/ VWh1FWaumqoE2H9IhZAq5Sun4Tc5mX/BM5s/w= Message-ID: <4CF0DC95.2050501@gmail.com> Date: Sat, 27 Nov 2010 11:25:25 +0100 From: Tejun Heo User-Agent: Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US; rv:1.9.2.12) Gecko/20101027 Lightning/1.0b2 Thunderbird/3.1.6 MIME-Version: 1.0 To: Alessandro Tagliapietra CC: Borislav Petkov , Eric Dumazet , linux-kernel@vger.kernel.org, linux-ide Subject: Re: Message References: <1290755809.2678.14.camel@edumazet-laptop> <20101126073805.GB14282@liondog.tnic> <4CEFEEC6.20900@gmail.com> In-Reply-To: X-Enigmail-Version: 1.1.1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/26/2010 07:59 PM, Alessandro Tagliapietra wrote: > 2010/11/26 Tejun Heo : >> Can you please just attach them? > > > Sure, here are the files. The file "dmesg" is done via fedora with > kernel 2.6.35.6-45.fc14.x86_64. > > Also, as aked, the lspci -nn. So, it's a different controller. 1b4b:91a3 instead of 1b4b:9123. Hmm... why did they switch vendor id from 11ab? I currently don't have access to the datasheets but does the following blind patch work by any chance? diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 3288263..0c39fbb 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -380,6 +380,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(MARVELL, 0x6121), board_ahci_mv }, /* 6121 */ { PCI_DEVICE(0x1b4b, 0x9123), .driver_data = board_ahci_yes_fbs }, /* 88se9128 */ + { PCI_DEVICE(0x1b4b, 0x91a3), + .driver_data = board_ahci_yes_fbs }, /* Promise */ { PCI_VDEVICE(PROMISE, 0x3f20), board_ahci }, /* PDC42819 */ -- tejun