An error occurred fetching the project authors.
  1. 15 Jul, 2014 1 commit
  2. 28 Feb, 2014 1 commit
  3. 12 Feb, 2014 2 commits
  4. 06 Jan, 2014 1 commit
  5. 18 Dec, 2013 9 commits
  6. 18 Oct, 2013 2 commits
  7. 25 Sep, 2013 1 commit
    • Joe Perches's avatar
      brcm80211: Remove extern from function prototypes · 9bd91f3c
      Joe Perches authored
      There are a mix of function prototypes with and without extern
      in the kernel sources.  Standardize on not using extern for
      function prototypes.
      
      Function prototypes don't need to be written with extern.
      extern is assumed by the compiler.  Its use is as unnecessary as
      using auto to declare automatic/local variables in a block.
      Signed-off-by: default avatarJoe Perches <joe@perches.com>
      9bd91f3c
  8. 15 Aug, 2013 1 commit
  9. 27 Jun, 2013 2 commits
  10. 18 Jun, 2013 2 commits
  11. 12 Apr, 2013 4 commits
  12. 24 Sep, 2012 1 commit
  13. 15 May, 2012 9 commits
  14. 09 May, 2012 1 commit
    • Franky Lin's avatar
      brcmfmac: add out of band interrupt support · ba89bf19
      Franky Lin authored
      Some sdio host controllers do not support real in band interrupt.
      Software polling mode as a replacement is not fast enough for
      high throughput and new features. Also some in band interrupts
      do not support host wake up on embedded platform even when they
      are real physical interrupts. Therefore out of band (oob)
      interrupt mechanism is implemented for these scenarios.
      
      To provide oob irq number and flags used for irq registration in
      brcmfmac, a platform device contains irq resource must be
      registered in board specific code.
      
      Here is an example of platform device structure:
      struct resource brcmf_sdio_res[] = {
      	{
      		.start	= GPIO_BRCMF_SDIO_OOB_NUM,
      		.end	= GPIO_BRCMF_SDIO_OOB_NUM,
      		.flags  = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
      	}
      };
      struct platform_device brcmf_sdio_device = {
      	.name		= "brcmf_sdio_pd",
      	.id		= -1,
      	.num_resources	= ARRAY_SIZE(brcmf_sdio_res),
      	.resource	= brcmf_sdio_res,
      };
      Reviewed-by: default avatarpieter-paul giesberts <pieterpg@broadcom.com>
      Reviewed-by: default avatararend van spriel <arend@broadcom.com>
      Signed-off-by: default avatarfranky lin <frankyl@broadcom.com>
      Signed-off-by: default avatarFranky Lin <frankyl@broadcom.com>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      ba89bf19
  15. 19 Dec, 2011 2 commits
  16. 13 Dec, 2011 1 commit