09 Sep, 2016

35 commits


07 Sep, 2016

5 commits

  • Update the cobalt EDID, fixing various incorrect values (wrong name,
    product code, various video capabilities).

    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Hans Verkuil
     
  • Update the vivid EDID, fixing various incorrect values (wrong name,
    product code, various video capabilities).

    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Hans Verkuil
     
  • As warned by smatch:
    drivers/media/pci/tw5864/tw5864-core.c:160 tw5864_h264_isr() error: double lock 'irqsave:flags'
    drivers/media/pci/tw5864/tw5864-core.c:174 tw5864_h264_isr() error: double unlock 'irqsave:flags'

    Two different spinlocks are obtained, so having two calls is correct,
    but second irqsave is superfluous, and using same "flags" variable is
    just wrong.

    Reported-by: Mauro Carvalho Chehab
    Signed-off-by: Andrey Utkin
    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Andrey Utkin
     
  • This reverts commit 617e901a12ad ("[media] tw5864: remove double irq lock code").

    That commit was rejected by Andrey Utkin ,
    but it had already been merged. Revert and apply Andrey's corrected
    patch next.

    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Hans Verkuil
     
  • Fix some small things:
    - clean up setup function
    - use MSGEND instead of 0xfe
    - don't assign "return value" from cec_phys_addr to err,
    it has return type void.

    Signed-off-by: Johan Fjeldtvedt
    Signed-off-by: Hans Verkuil
    Signed-off-by: Mauro Carvalho Chehab

    Johan Fjeldtvedt