1. 08 Dec, 2010 7 commits
  2. 07 Dec, 2010 1 commit
    • Paul Walmsley's avatar
      OMAP1: I2C: fix device initialization · 00b4ade1
      Paul Walmsley authored
      Commit 4d17aeb1 ("OMAP: I2C: split
      device registration and convert OMAP2+ to omap_device") broke I2C on
      OMAP1.  The following messages appear at boot:
      
      i2c_omap i2c_omap.1: failure requesting irq 0
      i2c_omap: probe of i2c_omap.1 failed with error -22
      
      Investigation revealed that a chunk of code is missing from the
      original plat-omap/i2c.c file which configured the IRQ and base address
      for the I2C block on OMAP1.  Upon adding this back, the OMAP1 I2C block
      seems to initialize correctly.
      
      Thanks to Cory Maccarrone <darkstar6262@gmail.com> for reporting the bug,
      and apologies for the breakage.
      Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
      Cc: Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
      Tested-by: default avatarCory Maccarrone <darkstar6262@gmail.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      00b4ade1
  3. 30 Nov, 2010 13 commits
  4. 29 Nov, 2010 18 commits
  5. 28 Nov, 2010 1 commit
    • Linus Torvalds's avatar
      Export 'get_pipe_info()' to other users · c66fb347
      Linus Torvalds authored
      And in particular, use it in 'pipe_fcntl()'.
      
      The other pipe functions do not need to use the 'careful' version, since
      they are only ever called for things that are already known to be pipes.
      
      The normal read/write/ioctl functions are called through the file
      operations structures, so if a file isn't a pipe, they'd never get
      called.  But pipe_fcntl() is special, and called directly from the
      generic fcntl code, and needs to use the same careful function that the
      splice code is using.
      
      Cc: Jens Axboe <jaxboe@fusionio.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Dave Jones <davej@redhat.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      c66fb347