LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Alan Cox <alan@lxorguk.ukuu.org.uk> To: akpm@osdl.org, linux-kernel@vger.kernel.org, jeff@garzik.org Subject: [PATCH] pata_pdc202xx_old: Correct cable detect logic Date: Tue, 3 Jul 2007 15:15:13 +0100 [thread overview] Message-ID: <20070703151513.19d7e924@the-village.bc.nu> (raw) We got it backwards and now the other detects are fixed it shows up Signed-off-by: Alan Cox <alan@redhat.com> diff -u --new-file --exclude-from /usr/src/exclude --recursive linux.vanilla-2.6.22-rc6-mm1/drivers/ata/pata_pdc202xx_old.c linux-2.6.22-rc6-mm1/drivers/ata/pata_pdc202xx_old.c --- linux.vanilla-2.6.22-rc6-mm1/drivers/ata/pata_pdc202xx_old.c 2007-07-02 20:50:11.000000000 +0100 +++ linux-2.6.22-rc6-mm1/drivers/ata/pata_pdc202xx_old.c 2007-07-02 21:04:38.000000000 +0100 @@ -31,8 +31,8 @@ pci_read_config_word(pdev, 0x50, &cis); if (cis & (1 << (10 + ap->port_no))) - return ATA_CBL_PATA80; - return ATA_CBL_PATA40; + return ATA_CBL_PATA40; + return ATA_CBL_PATA80; } /**
reply other threads:[~2007-07-03 14:09 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20070703151513.19d7e924@the-village.bc.nu \ --to=alan@lxorguk.ukuu.org.uk \ --cc=akpm@osdl.org \ --cc=jeff@garzik.org \ --cc=linux-kernel@vger.kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).