Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 357470
b: refs/heads/master
c: bb71b14
h: refs/heads/master
v: v3
  • Loading branch information
Nickolai Zeldovich authored and Mauro Carvalho Chehab committed Feb 5, 2013
1 parent f1d8f77 commit 583a7d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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: 22331a5e0a493f8edfbd504bb58bd03d308ddb0c
refs/heads/master: bb71b14d80bde8484ae63ee09d969c72d8615e0c
4 changes: 2 additions & 2 deletions trunk/drivers/media/pci/bt8xx/dst_ca.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ static int ca_get_app_info(struct dst_state *state)
put_command_and_length(&state->messages[0], CA_APP_INFO, length);

// Copy application_type, application_manufacturer and manufacturer_code
memcpy(&state->messages[4], &state->messages[7], 5);
memmove(&state->messages[4], &state->messages[7], 5);

// Set string length and copy string
state->messages[9] = str_length;
memcpy(&state->messages[10], &state->messages[12], str_length);
memmove(&state->messages[10], &state->messages[12], str_length);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/pci/cx18/cx18-vbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ static void copy_vbi_data(struct cx18 *cx, int lines, u32 pts_stamp)
(the max size of the VBI data is 36 * 43 + 4 bytes).
So in this case we use the magic number 'ITV0'. */
memcpy(dst + sd, "ITV0", 4);
memcpy(dst + sd + 4, dst + sd + 12, line * 43);
memmove(dst + sd + 4, dst + sd + 12, line * 43);
size = 4 + ((43 * line + 3) & ~3);
} else {
memcpy(dst + sd, "itv0", 4);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/pci/ivtv/ivtv-vbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ static void copy_vbi_data(struct ivtv *itv, int lines, u32 pts_stamp)
(the max size of the VBI data is 36 * 43 + 4 bytes).
So in this case we use the magic number 'ITV0'. */
memcpy(dst + sd, "ITV0", 4);
memcpy(dst + sd + 4, dst + sd + 12, line * 43);
memmove(dst + sd + 4, dst + sd + 12, line * 43);
size = 4 + ((43 * line + 3) & ~3);
} else {
memcpy(dst + sd, "itv0", 4);
Expand Down Expand Up @@ -532,7 +532,7 @@ void ivtv_vbi_work_handler(struct ivtv *itv)
while (vi->cc_payload_idx) {
cc = vi->cc_payload[0];

memcpy(vi->cc_payload, vi->cc_payload + 1,
memmove(vi->cc_payload, vi->cc_payload + 1,
sizeof(vi->cc_payload) - sizeof(vi->cc_payload[0]));
vi->cc_payload_idx--;
if (vi->cc_payload_idx && cc.odd[0] == 0x80 && cc.odd[1] == 0x80)
Expand Down

0 comments on commit 583a7d7

Please sign in to comment.