1. 24 3月, 2011 2 次提交
  2. 14 1月, 2011 2 次提交
  3. 12 11月, 2010 1 次提交
    • D
      rapidio: use resource_size() · 88cf81fc
      Dan Carpenter 提交于
      The size calculation is done incorrectly here because it should include
      both the start and end (end - start + 1).  It's easiest to just use
      resource_size() which does the right thing.
      
      I was worried there was something non-standard going on because the
      printk() subtracts "end - 1", but the rest of the file uses the normal
      resource size calculations.  This function is only called from
      fsl_rio_setup() in arch/powerpc/sysdev/fsl_rio.c and the calculation
      there is also:
      
      	port->iores.start = law_start;
      	port->iores.end = law_start + law_size - 1;
      
      So I think this is the correct fix.
      Signed-off-by: NDan Carpenter <error27@gmail.com>
      Cc: Alexandre Bounine <alexandre.bounine@idt.com>
      Acked-by: NLi Yang <leoli@freescale.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      88cf81fc
  4. 28 10月, 2010 5 次提交
  5. 17 6月, 2010 1 次提交
  6. 31 5月, 2010 1 次提交
    • R
      rapidio: fix new kernel-doc warnings · 97ef6f74
      Randy Dunlap 提交于
      Fix a bunch of new rapidio kernel-doc warnings:
      
      Warning(include/linux/rio.h:123): No description found for parameter 'comp_tag'
      Warning(include/linux/rio.h:123): No description found for parameter 'phys_efptr'
      Warning(include/linux/rio.h:123): No description found for parameter 'em_efptr'
      Warning(include/linux/rio.h:123): No description found for parameter 'pwcback'
      Warning(include/linux/rio.h:247): No description found for parameter 'set_domain'
      Warning(include/linux/rio.h:247): No description found for parameter 'get_domain'
      Warning(drivers/rapidio/rio-scan.c:1133): No description found for parameter 'rdev'
      Warning(drivers/rapidio/rio-scan.c:1133): Excess function parameter 'port' description in 'rio_init_em'
      Warning(drivers/rapidio/rio.c:349): No description found for parameter 'rdev'
      Warning(drivers/rapidio/rio.c:349): Excess function parameter 'mport' description in 'rio_request_inb_pwrite'
      Warning(drivers/rapidio/rio.c:393): No description found for parameter 'port'
      Warning(drivers/rapidio/rio.c:393): No description found for parameter 'local'
      Warning(drivers/rapidio/rio.c:393): No description found for parameter 'destid'
      Warning(drivers/rapidio/rio.c:393): No description found for parameter 'hopcount'
      Warning(drivers/rapidio/rio.c:393): Excess function parameter 'rdev' description in 'rio_mport_get_physefb'
      Warning(drivers/rapidio/rio.c:845): Excess function parameter 'local' description in 'rio_std_route_clr_table'
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Cc: Alexandre Bounine <alexandre.bounine@idt.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      97ef6f74
  7. 28 5月, 2010 3 次提交
  8. 01 12月, 2008 1 次提交
  9. 29 4月, 2008 1 次提交
  10. 24 1月, 2008 1 次提交
    • K
      [RAPIDIO] Fix compile error and warning · 5febf1cd
      Kumar Gala 提交于
      drivers/rapidio/rio.c: In function 'rio_get_asm':
      drivers/rapidio/rio.c:413: error: implicit declaration of function 'in_interrupt'
      drivers/rapidio/rio.c: In function 'rio_init_mports':
      drivers/rapidio/rio.c:480: warning: format '%8.8lx' expects type 'long unsigned int', but argument 2 has type 'resource_size_t'
      drivers/rapidio/rio.c:480: warning: format '%8.8lx' expects type 'long unsigned int', but argument 3 has type 'resource_size_t'
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      5febf1cd
  11. 01 7月, 2006 1 次提交
  12. 09 1月, 2006 1 次提交
  13. 07 11月, 2005 2 次提交