Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=128bf5cb54dececc5209db65f8ef5d17d74244d9
Commit:     128bf5cb54dececc5209db65f8ef5d17d74244d9
Parent:     c1996c2778e90f80cb9fc6a52508068f10d39611
Author:     Sam Ravnborg <[EMAIL PROTECTED]>
AuthorDate: Fri Mar 2 23:59:04 2007 +0100
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Mar 9 15:36:30 2007 -0800

    pci: fix section mismatch warning
    
    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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/pci/search.c b/drivers/pci/search.c
index ff98ead..2dd8681 100644
--- a/drivers/pci/search.c
+++ b/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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to