1. 05 11月, 2007 1 次提交
    • R
      V4L/DVB (6479): use input functions, should depend on INPUT · cb20630c
      Randy Dunlap 提交于
      All of these drivers select VIDEO_IR, which uses the input subsystem,
      so they should also depend on INPUT.
      
      Problem examples:
      
      drivers/built-in.o: In function `ir_input_key_event':
      ir-functions.c:(.text+0x10849a): undefined reference to `input_event'
      ir-functions.c:(.text+0x1084ac): undefined reference to `input_event'
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11cc0a): undefined reference to `get_key_pinnacle_color'
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11cc4f): undefined reference to `get_key_pinnacle_grey'
      drivers/built-in.o: In function `saa7134_input_fini':
      (.text+0x11cd8b): undefined reference to `input_unregister_device'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11d1fa): undefined reference to `input_allocate_device'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11d317): undefined reference to `input_register_device'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11d6ca): undefined reference to `input_free_device'
      
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11c3f3): undefined reference to `ir_codes_hauppauge_new'
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11c450): undefined reference to `ir_codes_pinnacle_color'
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11c480): undefined reference to `ir_codes_purpletv'
      drivers/built-in.o: In function `saa7134_set_i2c_ir':
      (.text+0x11c495): undefined reference to `ir_codes_pinnacle_grey'
      drivers/built-in.o: In function `saa7134_ir_start':
      (.text+0x11c622): undefined reference to `ir_rc5_timer_end'
      drivers/built-in.o: In function `saa7134_ir_start':
      (.text+0x11c637): undefined reference to `ir_rc5_timer_keyup'
      drivers/built-in.o: In function `build_key':
      saa7134-input.c:(.text+0x11c769): undefined reference to `ir_extract_bits'
      saa7134-input.c:(.text+0x11c7ad): undefined reference to `ir_input_keydown'
      saa7134-input.c:(.text+0x11c7f0): undefined reference to `ir_input_keydown'
      saa7134-input.c:(.text+0x11c7f9): undefined reference to `ir_input_nokey'
      saa7134-input.c:(.text+0x11c806): undefined reference to `ir_input_nokey'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11ca07): undefined reference to `ir_codes_encore_enltv'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11caf6): undefined reference to `ir_input_init'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cbf2): undefined reference to `ir_codes_avermedia'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cc24): undefined reference to `ir_codes_pctv_sedna'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cc53): undefined reference to `ir_codes_flydvb'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cc85): undefined reference to `ir_codes_videomate_tv_pvr'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11ccb7): undefined reference to `ir_codes_pixelview'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cce9): undefined reference to `ir_codes_eztv'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cd1b): undefined reference to `ir_codes_manli'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cda8): undefined reference to `ir_codes_cinergy'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cdd7): undefined reference to `ir_codes_flyvideo'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11ce06): undefined reference to `ir_codes_asus_pc39'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11ce7d): undefined reference to `ir_codes_gotview7135'
      drivers/built-in.o: In function `saa7134_input_init1':
      (.text+0x11cee1): undefined reference to `ir_codes_proteus_2309'
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      cb20630c
  2. 10 10月, 2007 2 次提交
  3. 19 7月, 2007 1 次提交
  4. 28 4月, 2007 1 次提交
    • T
      V4L/DVB (5363): Dvb: Remove lgh06xf driver · 6bdcc6e6
      Trent Piepho 提交于
      The code of the dvb-pll driver and the lgh06xf driver is nearly
      identical.  The main difference is that the lgh06xf driver would set the
      AGC TOP value on every tune call.  The dvb-pll driver now has the ability
      to set the AGC TOP when the front-end device is opened, which is a better
      way to go about it.  By using this ability of dvb-pll, the lgh06xf driver
      is made unnecessary.
      
      There is one other difference.  dvb-pll will probe for the presence of an
      I2C pll chip by doing a one byte read, the lgh06xf driver did not do
      this.  In some devices the PLL is not reachable over I2C at the timer the
      tuner is attached.  Some more initialization, such as firmware loading,
      must take place first.  None of the devices using a LG-H06xF should have
      this problem.
      Signed-off-by: NTrent Piepho <xyzzy@speakeasy.org>
      Acked-by: NMichael Krufky <mkrufky@linuxtv.org>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@infradead.org>
      6bdcc6e6
  5. 10 12月, 2006 1 次提交
  6. 04 10月, 2006 1 次提交
  7. 26 9月, 2006 1 次提交
  8. 11 9月, 2006 1 次提交
  9. 26 6月, 2006 1 次提交
  10. 25 6月, 2006 2 次提交
  11. 02 4月, 2006 2 次提交
  12. 25 3月, 2006 1 次提交
  13. 19 3月, 2006 1 次提交
  14. 08 3月, 2006 1 次提交
  15. 24 1月, 2006 3 次提交
  16. 23 1月, 2006 1 次提交
  17. 15 1月, 2006 1 次提交
  18. 10 1月, 2006 2 次提交
  19. 29 11月, 2005 1 次提交
  20. 09 11月, 2005 3 次提交