* @driver: the driver to be bound
  * @iface: the interface to which it will be bound; must be in the
  *     usb device's active configuration
- * @priv: driver data associated with that interface
+ * @data: driver data associated with that interface
  *
  * This is used by usb device drivers that need to claim more than one
  * interface on a device when probing (audio and acm are current examples).
  * Return: 0 on success.
  */
 int usb_driver_claim_interface(struct usb_driver *driver,
-                               struct usb_interface *iface, void *priv)
+                               struct usb_interface *iface, void *data)
 {
        struct device *dev;
        int retval = 0;
                return -ENODEV;
 
        dev->driver = &driver->drvwrap.driver;
-       usb_set_intfdata(iface, priv);
+       usb_set_intfdata(iface, data);
        iface->needs_binding = 0;
 
        iface->condition = USB_INTERFACE_BOUND;
 
 
 /* used these for multi-interface device registration */
 extern int usb_driver_claim_interface(struct usb_driver *driver,
-                       struct usb_interface *iface, void *priv);
+                       struct usb_interface *iface, void *data);
 
 /**
  * usb_interface_claimed - returns true iff an interface is claimed