* [git patches] 2.6.x libata new PCI ids
@ 2005-05-24 5:24 Jeff Garzik
2005-05-24 6:14 ` Linus Torvalds
0 siblings, 1 reply; 3+ messages in thread
From: Jeff Garzik @ 2005-05-24 5:24 UTC (permalink / raw)
To: Linus Torvalds, Andrew Morton; +Cc: linux-ide@vger.kernel.org, Linux Kernel
[-- Attachment #1: Type: text/plain, Size: 200 bytes --]
Please pull the 'new-ids' branch from
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
This add new PCI ids to some SATA drivers.
diffstat, changelog, and patch attached.
[-- Attachment #2: libata-2.6.txt --]
[-- Type: text/plain, Size: 2302 bytes --]
drivers/scsi/sata_promise.c | 2 ++
drivers/scsi/sata_sil.c | 1 +
2 files changed, 3 insertions(+)
commit 37c15447c565ab458ee3778e198d08f4041caa99
tree 2eda289903e3bf19eebce7d5f9aaed2240a02479
parent 9422e59ddf6cae68e46d7a2c3afe1ce4e739d3eb
author Martin Povolny <martin.povolny@solnet.cz> Mon, 16 May 2005 02:41:00 -0400
committer Jeff Garzik <jgarzik@pobox.com> Mon, 16 May 2005 02:41:00 -0400
[PATCH] sata_promise: new PCI ID for TX4200
[note - blank changeset]
--------------------------
commit 9422e59ddf6cae68e46d7a2c3afe1ce4e739d3eb
tree 2eda289903e3bf19eebce7d5f9aaed2240a02479
parent eeff84cc026e73d12fbe4484b5fa0d01efa8dc60
author Francisco Javier <ffelix@sshinf.com> Mon, 16 May 2005 02:39:00 -0400
committer Jeff Garzik <jgarzik@pobox.com> Mon, 16 May 2005 02:39:00 -0400
[PATCH] sata_promise: add PCI ID for FastTrak TX2200 2-ports
--------------------------
commit eeff84cc026e73d12fbe4484b5fa0d01efa8dc60
tree 136a26c73b90d0dd1c4088bb9a65409b5a2d806d
parent 88d7bd8cb9eb8d64bf7997600b0d64f7834047c5
author NAKAMURA Kenta <kenta@c.csce.kyushu-u.ac.jp> Mon, 16 May 2005 02:35:41 -0400
committer Jeff Garzik <jgarzik@pobox.com> Mon, 16 May 2005 02:35:41 -0400
[PATCH] sata_sil: new ID 1002:437A for ATI IXP400
--------------------------
diff --git a/drivers/scsi/sata_promise.c b/drivers/scsi/sata_promise.c
--- a/drivers/scsi/sata_promise.c
+++ b/drivers/scsi/sata_promise.c
@@ -151,6 +151,8 @@ static struct ata_port_info pdc_port_inf
static struct pci_device_id pdc_ata_pci_tbl[] = {
{ PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
board_2037x },
+ { PCI_VENDOR_ID_PROMISE, 0x3571, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
+ board_2037x },
{ PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
board_2037x },
{ PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
diff --git a/drivers/scsi/sata_sil.c b/drivers/scsi/sata_sil.c
--- a/drivers/scsi/sata_sil.c
+++ b/drivers/scsi/sata_sil.c
@@ -82,6 +82,7 @@ static struct pci_device_id sil_pci_tbl[
{ 0x1095, 0x3114, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3114 },
{ 0x1002, 0x436e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112 },
{ 0x1002, 0x4379, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112 },
+ { 0x1002, 0x437a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sil_3112 },
{ } /* terminate list */
};
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [git patches] 2.6.x libata new PCI ids
2005-05-24 5:24 [git patches] 2.6.x libata new PCI ids Jeff Garzik
@ 2005-05-24 6:14 ` Linus Torvalds
2005-05-24 6:27 ` Jeff Garzik
0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2005-05-24 6:14 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Andrew Morton, linux-ide@vger.kernel.org, Linux Kernel
On Tue, 24 May 2005, Jeff Garzik wrote:
>
> Please pull the 'new-ids' branch from
>
> rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
>
> This add new PCI ids to some SATA drivers.
So here the trees are identical in between the two versions, so the later
commit is definitely not doing anything. What's up?
I don't have a "git-undo" script, but it looks something like this:
echo [top-you-want-to-save] > .git/HEAD
git-read-tree -m HEAD
git-update-cache -f -u -a
and you're done - it should take less than half a second.
You can do "git-prune-script" at some point if you want to throw away the
objects that are no longer reachable, but the way you work, you'll never
even notice - you'll just have another stale head that isn't reachable
from anywhere any more.
Linus
----
commit 37c15447c565ab458ee3778e198d08f4041caa99
tree 2eda289903e3bf19eebce7d5f9aaed2240a02479
parent 9422e59ddf6cae68e46d7a2c3afe1ce4e739d3eb
author Martin Povolny <martin.povolny@solnet.cz> Mon, 16 May 2005 02:41:00 -0400
committer Jeff Garzik <jgarzik@pobox.com> Mon, 16 May 2005 02:41:00 -0400
[PATCH] sata_promise: new PCI ID for TX4200
[note - blank changeset]
--------------------------
commit 9422e59ddf6cae68e46d7a2c3afe1ce4e739d3eb
tree 2eda289903e3bf19eebce7d5f9aaed2240a02479
parent eeff84cc026e73d12fbe4484b5fa0d01efa8dc60
author Francisco Javier <ffelix@sshinf.com> Mon, 16 May 2005 02:39:00 -0400
committer Jeff Garzik <jgarzik@pobox.com> Mon, 16 May 2005 02:39:00 -0400
[PATCH] sata_promise: add PCI ID for FastTrak TX2200 2-ports
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [git patches] 2.6.x libata new PCI ids
2005-05-24 6:14 ` Linus Torvalds
@ 2005-05-24 6:27 ` Jeff Garzik
0 siblings, 0 replies; 3+ messages in thread
From: Jeff Garzik @ 2005-05-24 6:27 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Andrew Morton, linux-ide@vger.kernel.org, Linux Kernel
Linus Torvalds wrote:
>
> On Tue, 24 May 2005, Jeff Garzik wrote:
>
>>Please pull the 'new-ids' branch from
>>
>>rsync://rsync.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
>>
>>This add new PCI ids to some SATA drivers.
>
>
> So here the trees are identical in between the two versions, so the later
> commit is definitely not doing anything. What's up?
pass 'refs/heads/new-ids' as the second arg to git-pull-script.
Jeff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-05-24 6:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-24 5:24 [git patches] 2.6.x libata new PCI ids Jeff Garzik
2005-05-24 6:14 ` Linus Torvalds
2005-05-24 6:27 ` Jeff Garzik
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).