firewire: Move sync and tag parameters to start_iso ioctl.

Setting these at create_context time or start_iso time doesn't matter
much, but raw1394 sets them at start_iso time so that will be easier to
emulate this way.

Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
diff --git a/drivers/firewire/fw-device-cdev.h b/drivers/firewire/fw-device-cdev.h
index 440fb74..3437a36 100644
--- a/drivers/firewire/fw-device-cdev.h
+++ b/drivers/firewire/fw-device-cdev.h
@@ -194,8 +194,6 @@
 	__u32 header_size;
 	__u32 channel;
 	__u32 speed;
-	__u32 sync;
-	__u32 tags;
 };
 
 struct fw_cdev_iso_packet {
@@ -216,6 +214,8 @@
 
 struct fw_cdev_start_iso {
 	__s32 cycle;
+	__u32 sync;
+	__u32 tags;
 };
 
 #endif /* __fw_cdev_h */