LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] pci: remove parisc consumer of the pci global_list
@ 2008-02-20 21:14 James Bottomley
2008-02-20 22:22 ` Greg KH
2008-02-20 22:25 ` patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree gregkh
0 siblings, 2 replies; 4+ messages in thread
From: James Bottomley @ 2008-02-20 21:14 UTC (permalink / raw)
To: Greg KH; +Cc: Parisc List, linux-kernel
The patch pci-remove-global-list-of-pci-devices.patch misses the parisc
dino use of this. However, it's a simple removal job.
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
---
diff --git a/drivers/parisc/dino.c b/drivers/parisc/dino.c
index 03c763c..d9c6322 100644
--- a/drivers/parisc/dino.c
+++ b/drivers/parisc/dino.c
@@ -496,7 +496,6 @@ dino_card_setup(struct pci_bus *bus, void __iomem *base_addr)
list_for_each_safe(ln, tmp_ln, &bus->devices) {
struct pci_dev *dev = pci_dev_b(ln);
- list_del(&dev->global_list);
list_del(&dev->bus_list);
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] pci: remove parisc consumer of the pci global_list
2008-02-20 21:14 [PATCH] pci: remove parisc consumer of the pci global_list James Bottomley
@ 2008-02-20 22:22 ` Greg KH
2008-02-20 22:25 ` patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree gregkh
1 sibling, 0 replies; 4+ messages in thread
From: Greg KH @ 2008-02-20 22:22 UTC (permalink / raw)
To: James Bottomley; +Cc: Parisc List, linux-kernel
On Wed, Feb 20, 2008 at 03:14:24PM -0600, James Bottomley wrote:
> The patch pci-remove-global-list-of-pci-devices.patch misses the parisc
> dino use of this. However, it's a simple removal job.
>
> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Ah, sorry about that, I'll add that to my tree in the correct order so
we don't get bisect problems.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree
2008-02-20 21:14 [PATCH] pci: remove parisc consumer of the pci global_list James Bottomley
2008-02-20 22:22 ` Greg KH
@ 2008-02-20 22:25 ` gregkh
2008-02-20 22:45 ` Kyle McMartin
1 sibling, 1 reply; 4+ messages in thread
From: gregkh @ 2008-02-20 22:25 UTC (permalink / raw)
To: James.Bottomley, greg, gregkh, linux-kernel, linux-parisc
This is a note to let you know that I've just added the patch titled
Subject: PCI: remove parisc consumer of the pci global_list
to my gregkh-2.6 tree. Its filename is
pci-remove-parisc-consumer-of-the-pci-global_list.patch
This tree can be found at
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
>From James.Bottomley@HansenPartnership.com Wed Feb 20 14:22:51 2008
From: James Bottomley <James.Bottomley@HansenPartnership.com>
Date: Wed, 20 Feb 2008 15:14:24 -0600
Subject: PCI: remove parisc consumer of the pci global_list
To: Greg KH <greg@kroah.com>
Cc: Parisc List <linux-parisc@vger.kernel.org>, linux-kernel <linux-kernel@vger.kernel.org>
Message-ID: <1203542065.3109.42.camel@localhost.localdomain>
Remove the parisc usage of the global_list, as it's not needed anymore.
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
drivers/parisc/dino.c | 1 -
1 file changed, 1 deletion(-)
--- a/drivers/parisc/dino.c
+++ b/drivers/parisc/dino.c
@@ -496,7 +496,6 @@ dino_card_setup(struct pci_bus *bus, voi
list_for_each_safe(ln, tmp_ln, &bus->devices) {
struct pci_dev *dev = pci_dev_b(ln);
- list_del(&dev->global_list);
list_del(&dev->bus_list);
}
Patches currently in gregkh-2.6 which might be from James.Bottomley@HansenPartnership.com are
pci/pci-remove-parisc-consumer-of-the-pci-global_list.patch
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree
2008-02-20 22:25 ` patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree gregkh
@ 2008-02-20 22:45 ` Kyle McMartin
0 siblings, 0 replies; 4+ messages in thread
From: Kyle McMartin @ 2008-02-20 22:45 UTC (permalink / raw)
To: gregkh; +Cc: James.Bottomley, greg, linux-kernel, linux-parisc
On Wed, Feb 20, 2008 at 02:25:02PM -0800, gregkh@suse.de wrote:
>
> This is a note to let you know that I've just added the patch titled
>
> Subject: PCI: remove parisc consumer of the pci global_list
>
Thanks for finding this, both of you. Probably saves me some heartaches
for 2.6.26-rc1. :)
cheers, Kyle
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-02-20 22:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-20 21:14 [PATCH] pci: remove parisc consumer of the pci global_list James Bottomley
2008-02-20 22:22 ` Greg KH
2008-02-20 22:25 ` patch pci-remove-parisc-consumer-of-the-pci-global_list.patch added to gregkh-2.6 tree gregkh
2008-02-20 22:45 ` Kyle McMartin
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).