1. 17 1月, 2010 11 次提交
  2. 30 12月, 2009 1 次提交
    • C
      firewire: fix use of multiple AV/C devices, allow multiple FCP listeners · db5d247a
      Clemens Ladisch 提交于
      Control of more than one AV/C device at once --- e.g. camcorders, tape
      decks, audio devices, TV tuners --- failed or worked only unreliably,
      depending on driver implementation.  This affected kernelspace and
      userspace drivers alike and was caused by firewire-core's inability to
      accept multiple registrations of FCP listeners.
      
      The fix allows multiple address handlers to be registered for the FCP
      command and response registers.  When a request for these registers is
      received, all handlers are invoked, and the Firewire response is
      generated by the core and not by any handler.
      
      The cdev API does not change, i.e., userspace is still expected to send
      a response for FCP requests; this response is silently ignored.
      Signed-off-by: NClemens Ladisch <clemens@ladisch.de>
      Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> (changelog, rebased, whitespace)
      db5d247a
  3. 16 12月, 2009 25 次提交
  4. 06 12月, 2009 3 次提交
    • D
      V4L/DVB (13541): atbm8830: replace 64-bit division and floating point usage · 92fda216
      David Wong 提交于
      Randy Dunlap wrote:
      > On Mon, 30 Nov 2009 10:07:21 -0800 Randy Dunlap wrote:
      >
      >> Stephen Rothwell wrote:
      >>> Hi all,
      
      > >>> Changes since 20091127:
      
      >>> The v4l-dvb tree lost its conflict.
      >>
      >> on i386 (X86_32):
      >>
      >> a 'double' variable is used, causing:
      >>
      >> ERROR: "__floatunsidf" [drivers/media/common/tuners/max2165.ko] undefined!
      >> ERROR: "__adddf3" [drivers/media/common/tuners/max2165.ko] undefined!
      >> ERROR: "__fixunsdfsi" [drivers/media/common/tuners/max2165.ko] undefined!
      >
      >
      > linux-next-20091202:
      >
      > still have this one (above) and similar with
      > drivers/media/dvb/frontends/atbm8830.c:
      >
      > drivers/built-in.o: In function `atbm8830_init':
      > atbm8830.c:(.text+0x9012f9): undefined reference to `__udivdi3'
      > atbm8830.c:(.text+0x901384): undefined reference to `__floatunsidf'
      > atbm8830.c:(.text+0x901395): undefined reference to `__muldf3'
      > atbm8830.c:(.text+0x9013a5): undefined reference to `__floatunsidf'
      > atbm8830.c:(.text+0x9013b2): undefined reference to `__divdf3'
      > atbm8830.c:(.text+0x9013c3): undefined reference to `__muldf3'
      > atbm8830.c:(.text+0x9013cd): undefined reference to `__fixunsdfsi'
      >
      > ---
      > ~Randy
      > --
      > To unsubscribe from this list: send the line "unsubscribe linux-media" in
      > the body of a message to majordomo@vger.kernel.org
      > More majordomo info at  http://vger.kernel.org/majordomo-info.html
      
      This patch replace 64-bit division by do_div() macro and remove usage of
      floating point variable
      Signed-off-by: NDavid T. L. Wong <davidtlwong@gmail.com>
      Acked-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      92fda216
    • M
      V4L/DVB (13537): ir: Prepare the code for dynamic keycode table allocation · 055cd556
      Mauro Carvalho Chehab 提交于
      Currently, the IR table is initialized by calling ir_input_init(). However,
      this function doesn't return any error code, nor has a function to be called
      when de-initializing the IR's.
      
      Change the return argment to integer and make sure that each driver will
      handle the error code. Also adds a function to free any resources that may
      be allocating there: ir_input_free().
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      055cd556
    • M