firewire: Fix order of arguments for iso context creation.
Signed-off-by: Kristian Høgsberg <krh@redhat.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
28cf6a04c8
commit
8fbdbb3683
|
@ -558,9 +558,9 @@ static int ioctl_create_iso_context(struct client *client, void __user *arg)
|
||||||
request.type,
|
request.type,
|
||||||
request.channel,
|
request.channel,
|
||||||
request.speed,
|
request.speed,
|
||||||
request.header_size,
|
|
||||||
request.sync,
|
request.sync,
|
||||||
request.tags,
|
request.tags,
|
||||||
|
request.header_size,
|
||||||
iso_callback, client);
|
iso_callback, client);
|
||||||
if (IS_ERR(client->iso_context))
|
if (IS_ERR(client->iso_context))
|
||||||
return PTR_ERR(client->iso_context);
|
return PTR_ERR(client->iso_context);
|
||||||
|
|
Loading…
Reference in New Issue