Skip to content

Commit

Permalink
Fix a const pointer error in the Conexant cx23418 MPEG encoder driver
Browse files Browse the repository at this point in the history
Fix a const pointer to non-const pointer assignment error in the Conexant
cx23418 MPEG encoder driver.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Howells authored and David Woodhouse committed Jul 10, 2008
1 parent 2bca76e commit 9b8a3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/cx18/cx18-av-firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int cx18_av_loadfw(struct cx18 *cx)
const struct firmware *fw = NULL;
u32 size;
u32 v;
u8 *ptr;
const u8 *ptr;
int i;

if (request_firmware(&fw, FWFILE, &cx->dev->dev) != 0) {
Expand Down

0 comments on commit 9b8a3e4

Please sign in to comment.