1. 21 3月, 2012 1 次提交
  2. 22 2月, 2012 1 次提交
  3. 02 1月, 2012 1 次提交
  4. 23 12月, 2011 1 次提交
  5. 14 12月, 2011 1 次提交
  6. 08 12月, 2011 5 次提交
    • M
      MIPS: Alchemy: Au1300 SoC support · 809f36c6
      Manuel Lauss 提交于
      Add basic support for the Au1300 variant(s):
      - New GPIO/Interrupt controller
      - DBDMA ids
      - USB setup
      - MMC support
      - enable various PSC drivers
      - detection code.
      Signed-off-by: NManuel Lauss <manuel.lauss@googlemail.com>
      To: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/2866/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      809f36c6
    • M
      spi/gpio: fix section mismatch warning · c65b53ba
      Manuel Lauss 提交于
      Fixes:
      The function __devinit spi_gpio_probe() references
      a function __init spi_gpio_alloc.isra.4().
      If spi_gpio_alloc.isra.4 is only used by spi_gpio_probe then
      annotate spi_gpio_alloc.isra.4 with a matching annotation.
      
      [wsa: fix spi_gpio_request(), too]
      Signed-off-by: NManuel Lauss <manuel.lauss@googlemail.com>
      Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
      c65b53ba
    • J
      spi/fsl-espi: disable CONFIG_SPI_FSL_ESPI=m build · d9ddcec3
      Jiri Slaby 提交于
      When spi_fsl_espi is chosen to be built as a module, there is a build
      error because we test only CONFIG_SPI_FSL_ESPI in declaration of
      struct mpc8xxx_spi in drivers/spi/spi_fsl_lib.h. Also some called
      functions are not exported.
      
      So we forbid CONFIG_SPI_FSL_ESPI to be tristate here.
      
      The error looks like:
      drivers/spi/spi_fsl_espi.c: In function 'fsl_espi_bufs':
      drivers/spi/spi_fsl_espi.c:232: error: 'struct mpc8xxx_spi' has no member named 'len'
      ...
      Signed-off-by: NJiri Slaby <jslaby@suse.cz>
      Acked-by: NKumar Gala <galak@kernel.crashing.org>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
      d9ddcec3
    • A
      spi/nuc900: Include linux/module.h · 00d2952c
      Axel Lin 提交于
      Include linux/module.h to fix below build error:
      
        CC      drivers/spi/spi-nuc900.o
      drivers/spi/spi-nuc900.c:484: error: 'THIS_MODULE' undeclared here (not in a function)
      drivers/spi/spi-nuc900.c:489: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-nuc900.c:489: warning: data definition has no type or storage class
      drivers/spi/spi-nuc900.c:489: warning: type defaults to 'int' in declaration of 'MODULE_AUTHOR'
      drivers/spi/spi-nuc900.c:489: warning: function declaration isn't a prototype
      drivers/spi/spi-nuc900.c:490: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-nuc900.c:490: warning: data definition has no type or storage class
      drivers/spi/spi-nuc900.c:490: warning: type defaults to 'int' in declaration of 'MODULE_DESCRIPTION'
      drivers/spi/spi-nuc900.c:490: warning: function declaration isn't a prototype
      drivers/spi/spi-nuc900.c:491: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-nuc900.c:491: warning: data definition has no type or storage class
      drivers/spi/spi-nuc900.c:491: warning: type defaults to 'int' in declaration of 'MODULE_LICENSE'
      drivers/spi/spi-nuc900.c:491: warning: function declaration isn't a prototype
      drivers/spi/spi-nuc900.c:492: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-nuc900.c:492: warning: data definition has no type or storage class
      drivers/spi/spi-nuc900.c:492: warning: type defaults to 'int' in declaration of 'MODULE_ALIAS'
      drivers/spi/spi-nuc900.c:492: warning: function declaration isn't a prototype
      make[2]: *** [drivers/spi/spi-nuc900.o] Error 1
      make[1]: *** [drivers/spi] Error 2
      make: *** [drivers] Error 2
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Acked-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
      00d2952c
    • G
      spi/ath79: fix compile error due to missing include · 807cc4b1
      Gabor Juhos 提交于
      Whithout including 'linux/module.h' spi-ath79 driver fails to compile
      with the these errors:
      
      drivers/spi/spi-ath79.c:273:12: error: 'THIS_MODULE' undeclared here (not in a function)
      drivers/spi/spi-ath79.c:278:20: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-ath79.c:278:1: warning: data definition has no type or storage class
      drivers/spi/spi-ath79.c:278:1: warning: type defaults to 'int' in declaration of 'MODULE_DESCRIPTION'
      drivers/spi/spi-ath79.c:278:20: warning: function declaration isn't a prototype
      drivers/spi/spi-ath79.c:279:15: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-ath79.c:279:1: warning: data definition has no type or storage class
      drivers/spi/spi-ath79.c:279:1: warning: type defaults to 'int' in declaration of 'MODULE_AUTHOR'
      drivers/spi/spi-ath79.c:279:15: warning: function declaration isn't a prototype
      drivers/spi/spi-ath79.c:280:16: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-ath79.c:280:1: warning: data definition has no type or storage class
      drivers/spi/spi-ath79.c:280:1: warning: type defaults to 'int' in declaration of 'MODULE_LICENSE'
      drivers/spi/spi-ath79.c:280:16: warning: function declaration isn't a prototype
      drivers/spi/spi-ath79.c:281:14: error: expected declaration specifiers or '...' before string constant
      drivers/spi/spi-ath79.c:281:1: warning: data definition has no type or storage class
      drivers/spi/spi-ath79.c:281:1: warning: type defaults to 'int' in declaration of 'MODULE_ALIAS'
      drivers/spi/spi-ath79.c:281:14: warning: function declaration isn't a prototype
      Signed-off-by: NGabor Juhos <juhosg@openwrt.org>
      Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
      807cc4b1
  7. 02 12月, 2011 7 次提交
  8. 27 11月, 2011 1 次提交
  9. 22 11月, 2011 1 次提交
  10. 14 11月, 2011 1 次提交
  11. 09 11月, 2011 2 次提交
  12. 01 11月, 2011 2 次提交
  13. 31 10月, 2011 1 次提交
  14. 29 10月, 2011 5 次提交
  15. 25 10月, 2011 2 次提交
  16. 24 10月, 2011 2 次提交
  17. 16 10月, 2011 1 次提交
  18. 15 10月, 2011 1 次提交
  19. 05 10月, 2011 4 次提交