From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Garzik Subject: Re: [sata] Promise PATA port on PDC2037x SATA Date: Thu, 25 Mar 2004 22:41:01 -0500 Sender: linux-ide-owner@vger.kernel.org Message-ID: <4063A64D.2000901@pobox.com> References: <40638943.9010206@pobox.com> <20040326031619.GA1755@codepoet.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from parcelfarce.linux.theplanet.co.uk ([195.92.249.252]:36320 "EHLO www.linux.org.uk") by vger.kernel.org with ESMTP id S263900AbUCZDlQ (ORCPT ); Thu, 25 Mar 2004 22:41:16 -0500 In-Reply-To: <20040326031619.GA1755@codepoet.org> List-Id: linux-ide@vger.kernel.org To: andersen@codepoet.org Cc: linux-ide@vger.kernel.org, Linux Kernel Thanks for testing. Is your PCI id listed in this function? static int pdc_pata_possible(struct pci_dev *pdev) { if (pdev->device == 0x3375) return 1; return 0; } If yes, hrm. :) If no, just unconditionally return 1 there and see if you get the message in pdc_host_init(): /* check for PATA port on PDC20375 */ if (pdc_pata_possible(pdev)) { tmp = readl(mmio + PDC_PCI_CTL); if (tmp & PDC_HAS_PATA) printk(KERN_INFO DRV_NAME "(%s): sorry, PATA port not supported yet\n", pci_name(pdev)); }