This is a note to let you know that I've just added the patch titled Subject: pci: fix section mismatch warning
to my gregkh-2.6 tree. Its filename is pci-fix-section-mismatch-warning.patch This tree can be found at http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/ >From [EMAIL PROTECTED] Fri Mar 2 15:06:44 2007 From: Sam Ravnborg <[EMAIL PROTECTED]> Date: Fri, 2 Mar 2007 23:59:04 +0100 Subject: pci: fix section mismatch warning To: Greg KH <[EMAIL PROTECTED]> Cc: LKML <linux-kernel@vger.kernel.org> Message-ID: <[EMAIL PROTECTED]> Content-Disposition: inline drivers/pci/search.c caused following section mismatch warning (if compiled with CONFIG_HOTPLUG=n): WARNING: drivers/pci/built-in.o - Section mismatch: reference to .init.text: from .text.pci_find_bus after 'pci_find_bus' (at offset 0x24) This was due to pci_find_bus() calling a function marked __devinit. Fix was to remove the __devinit from the offending function. Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> --- drivers/pci/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- gregkh-2.6.orig/drivers/pci/search.c +++ gregkh-2.6/drivers/pci/search.c @@ -15,7 +15,7 @@ DECLARE_RWSEM(pci_bus_sem); -static struct pci_bus * __devinit +static struct pci_bus * pci_do_find_bus(struct pci_bus* bus, unsigned char busnr) { struct pci_bus* child; Patches currently in gregkh-2.6 which might be from [EMAIL PROTECTED] are - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/