Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b8a3e4c authored by David Howells's avatar David Howells Committed by David Woodhouse
Browse files

Fix a const pointer error in the Conexant cx23418 MPEG encoder driver



Fix a const pointer to non-const pointer assignment error in the Conexant
cx23418 MPEG encoder driver.

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 2bca76e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {