aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/firewire-cdev.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/firewire-cdev.h')
-rw-r--r--include/linux/firewire-cdev.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/firewire-cdev.h b/include/linux/firewire-cdev.h
index 08ca838a727b..f819c1026958 100644
--- a/include/linux/firewire-cdev.h
+++ b/include/linux/firewire-cdev.h
@@ -229,6 +229,7 @@ union fw_cdev_event {
229#define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE _IOW('#', 0x0e, struct fw_cdev_deallocate) 229#define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE _IOW('#', 0x0e, struct fw_cdev_deallocate)
230#define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x0f, struct fw_cdev_allocate_iso_resource) 230#define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x0f, struct fw_cdev_allocate_iso_resource)
231#define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x10, struct fw_cdev_allocate_iso_resource) 231#define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x10, struct fw_cdev_allocate_iso_resource)
232#define FW_CDEV_IOC_GET_SPEED _IOR('#', 0x11, struct fw_cdev_get_speed)
232 233
233/* FW_CDEV_VERSION History 234/* FW_CDEV_VERSION History
234 * 235 *
@@ -575,4 +576,13 @@ struct fw_cdev_allocate_iso_resource {
575 __u32 handle; 576 __u32 handle;
576}; 577};
577 578
579/**
580 * struct fw_cdev_get_speed - Query maximum speed to or from this device
581 * @max_speed: Speed code; minimum of the device's link speed, the local node's
582 * link speed, and all PHY port speeds between the two links
583 */
584struct fw_cdev_get_speed {
585 __u32 max_speed;
586};
587
578#endif /* _LINUX_FIREWIRE_CDEV_H */ 588#endif /* _LINUX_FIREWIRE_CDEV_H */