return;
}
dev_dbg(hd->parent, "interface id %d added\n", interface_id);
- gb_add_interface(hd, interface_id, hotplug->data,
+ gb_interface_add(hd, interface_id, hotplug->data,
payload_length - 0x02);
break;
return;
}
dev_dbg(hd->parent, "interface id %d removed\n", interface_id);
- gb_remove_interface(hd, interface_id);
+ gb_interface_remove(hd, interface_id);
break;
default:
* with this host controller before freeing the memory associated with
* the host controller.
*/
- gb_remove_interfaces(hd);
+ gb_interfaces_remove(hd);
gb_endo_remove(hd->endo);
kref_put_mutex(&hd->kref, free_hd, &hd_mutex);
}
return NULL;
}
-static void greybus_interface_release(struct device *dev)
+static void gb_interface_release(struct device *dev)
{
struct gb_interface *intf = to_gb_interface(dev);
struct device_type greybus_interface_type = {
.name = "greybus_interface",
- .release = greybus_interface_release,
+ .release = gb_interface_release,
};
/*
}
/**
- * gb_add_interface
+ * gb_interface_add
*
* Pass in a buffer that _should_ contain a Greybus manifest
* and register a greybus device structure with the kernel core.
*/
-void gb_add_interface(struct greybus_host_device *hd, u8 interface_id, u8 *data,
+void gb_interface_add(struct greybus_host_device *hd, u8 interface_id, u8 *data,
int size)
{
struct gb_interface *intf;
gb_interface_destroy(intf);
}
-void gb_remove_interface(struct greybus_host_device *hd, u8 interface_id)
+void gb_interface_remove(struct greybus_host_device *hd, u8 interface_id)
{
struct gb_interface *intf = gb_interface_find(hd, interface_id);
interface_id);
}
-void gb_remove_interfaces(struct greybus_host_device *hd)
+void gb_interfaces_remove(struct greybus_host_device *hd)
{
struct gb_interface *intf, *temp;
struct gb_interface *gb_interface_find(struct greybus_host_device *hd,
u8 interface_id);
-void gb_add_interface(struct greybus_host_device *hd, u8 interface_id, u8 *data,
+void gb_interface_add(struct greybus_host_device *hd, u8 interface_id, u8 *data,
int size);
-void gb_remove_interface(struct greybus_host_device *hd, u8 interface_id);
-void gb_remove_interfaces(struct greybus_host_device *hd);
+void gb_interface_remove(struct greybus_host_device *hd, u8 interface_id);
+void gb_interfaces_remove(struct greybus_host_device *hd);
#endif /* __INTERFACE_H */