Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0f8c0234f275c8198cbb68f16e035fa46254e372
Commit:     0f8c0234f275c8198cbb68f16e035fa46254e372
Parent:     108b4c3638be251d6b42eaa633e8a6b852b960f0
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Wed Nov 14 16:58:45 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Wed Nov 14 18:45:37 2007 -0800

    chipsfb: uses/depends on PCI
    
    chipsfb uses PCI interfaces and should depend on PCI.
    
      CC      drivers/video/chipsfb.o
    drivers/video/chipsfb.c: In function 'chipsfb_pci_init':
    drivers/video/chipsfb.c:378: error: implicit declaration of function 
'pci_request_region'
    drivers/video/chipsfb.c:435: error: implicit declaration of function 
'pci_release_region'
    make[2]: *** [drivers/video/chipsfb.o] Error 1
    make[1]: *** [drivers/video] Error 2
    make: *** [drivers] Error 2
    
    !CONFIG_PCI causes the build to fail.
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Cc: Kamalesh Babulal <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/video/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index cc4b60f..7d86e9e 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -503,7 +503,7 @@ config FB_VALKYRIE
 
 config FB_CT65550
        bool "Chips 65550 display support"
-       depends on (FB = y) && PPC32
+       depends on (FB = y) && PPC32 && PCI
        select FB_CFB_FILLRECT
        select FB_CFB_COPYAREA
        select FB_CFB_IMAGEBLIT
-
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