1. 21 11月, 2012 5 次提交
  2. 14 11月, 2012 1 次提交
  3. 13 11月, 2012 1 次提交
  4. 07 11月, 2012 1 次提交
    • M
      [media] siano: fix RC compilation · 2c4e11b7
      Mauro Carvalho Chehab 提交于
      As reported by Antti and by Stephen:
      drivers/built-in.o: In function `sms_ir_event':
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:48: undefined reference to `ir_raw_event_store'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:50: undefined reference to `ir_raw_event_handle'
      drivers/built-in.o: In function `sms_ir_init':
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:56: undefined reference to `smscore_get_board_id'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:60: undefined reference to `rc_allocate_device'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:72: undefined reference to `sms_get_board'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:92: undefined reference to `sms_get_board'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:97: undefined reference to `rc_register_device'
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:100: undefined reference to `rc_free_device'
      drivers/built-in.o: In function `sms_ir_exit':
      /home/david/checkouts/linux/drivers/media/common/siano/smsir.c:111: undefined reference to `rc_unregister_device'
      make: *** [vmlinux] Error 1
      
      Caused by commit fdd1eeb4 "[media] siano: allow compiling it without RC support"
      And it happens when CONFIG_SMS_SIANO_RC=y and CONFIG_RC_CORE=m .
      Reported-by: NStephen Rothwell <sfr@canb.auug.org.au>
      Reported-by: NAntti Palosaari <crope@iki.fi>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      2c4e11b7
  5. 06 11月, 2012 2 次提交
  6. 02 11月, 2012 9 次提交
  7. 01 11月, 2012 1 次提交
  8. 29 10月, 2012 19 次提交
  9. 28 10月, 2012 1 次提交
    • P
      [media] staging: lirc_serial: silence GCC warning · 895507c1
      Paul Bolle 提交于
      Building lirc_serial.o triggers this GCC warning:
          drivers/staging/media/lirc/lirc_serial.c: In function '__check_sense':
          drivers/staging/media/lirc/lirc_serial.c:1301:1: warning: return from incompatible pointer type [enabled by default]
      This can be trivially fixed by changing the 'sense' parameter from bool
      to int. But, to be safe, we also need to make sure 'sense' will only be
      -1, 0, or 1. There's no need to document the new values that are now
      allowed for the 'sense' parameter, since they're basically useless.
      Signed-off-by: NPaul Bolle <pebolle@tiscali.nl>
      Cc: Jarod Wilson <jarod@wilsonet.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      895507c1