Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131729
b: refs/heads/master
c: 096edfb
h: refs/heads/master
i:
  131727: 39c82b4
v: v3
  • Loading branch information
Henrik Kurelid authored and Stefan Richter committed Feb 24, 2009
1 parent 953b0a3 commit d9783a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ae83cdf3297d7da301af36bdb6ff45bd331c6d0
refs/heads/master: 096edfbf167ab277608d26ba8b7978da116a4996
8 changes: 4 additions & 4 deletions trunk/drivers/media/dvb/firesat/avc_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ int avc_ca_info(struct firesat *firesat, char *app_info, unsigned int *len)
{
AVCCmdFrm CmdFrm;
AVCRspFrm RspFrm;
/* int pos; FIXME: unused */
int pos;

memset(&CmdFrm, 0, sizeof(AVCCmdFrm));
CmdFrm.cts = AVC;
Expand All @@ -783,13 +783,13 @@ int avc_ca_info(struct firesat *firesat, char *app_info, unsigned int *len)
if (avc_write(firesat, &CmdFrm, &RspFrm) < 0)
return -EIO;

/* pos = get_ca_object_pos(&RspFrm); FIXME: unused */
pos = get_ca_object_pos(&RspFrm);
app_info[0] = (TAG_CA_INFO >> 16) & 0xFF;
app_info[1] = (TAG_CA_INFO >> 8) & 0xFF;
app_info[2] = (TAG_CA_INFO >> 0) & 0xFF;
app_info[3] = 2;
app_info[4] = app_info[5];
app_info[5] = app_info[6];
app_info[4] = RspFrm.operand[pos + 0];
app_info[5] = RspFrm.operand[pos + 1];
*len = app_info[3] + 4;

return 0;
Expand Down

0 comments on commit d9783a2

Please sign in to comment.