1. 13 7月, 2012 1 次提交
  2. 12 7月, 2012 2 次提交
  3. 10 7月, 2012 10 次提交
  4. 28 6月, 2012 1 次提交
  5. 09 6月, 2012 1 次提交
  6. 05 6月, 2012 1 次提交
  7. 17 5月, 2012 13 次提交
  8. 19 4月, 2012 1 次提交
  9. 17 4月, 2012 1 次提交
  10. 11 4月, 2012 1 次提交
    • P
      bcma: fix build error on MIPS; implicit pcibios_enable_device · 58f743ee
      Paul Gortmaker 提交于
      The following is seen during allmodconfig builds for MIPS:
      
      drivers/bcma/driver_pci_host.c:518:2: error: implicit declaration
      of function 'pcibios_enable_device' [-Werror=implicit-function-declaration]
      cc1: some warnings being treated as errors
      make[3]: *** [drivers/bcma/driver_pci_host.o] Error 1
      
      Most likey introduced by commit 49dc9577
      
          "bcma: add PCIe host controller"
      
      Add the header instead of implicitly assuming it will be present.
      Sounds like a good idea, but that alone doesn't fix anything.
      
      The real problem is that the Kconfig has settings related to whether
      PCI is possible, i.e.
      
        config BCMA_HOST_PCI_POSSIBLE
              bool
              depends on BCMA && PCI = y
              default y
      
        config BCMA_HOST_PCI
              bool "Support for BCMA on PCI-host bus"
              depends on BCMA_HOST_PCI_POSSIBLE
      
      ...but what is missing is that BCMA_DRIVER_PCI_HOSTMODE doesn't
      have any dependencies on the above.  Add one.
      
      CC: Hauke Mehrtens <hauke@hauke-m.de>
      CC: John W. Linville <linville@tuxdriver.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Acked-by: NHauke Mehrtens <hauke@hauke-m.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      58f743ee
  11. 08 3月, 2012 1 次提交
  12. 07 3月, 2012 2 次提交
  13. 06 3月, 2012 2 次提交
  14. 07 2月, 2012 3 次提交