From 463e20271b77b7cefac4231ddf192546148888bc Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Sat, 18 Apr 2009 18:17:29 +0000 Subject: Fix some whitespace issues (including tabs that slipped in somehow) (FS#10144 by Tomer Shalev) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20731 a1c6a512-1295-4272-9138-f99709370657 --- firmware/usbstack/usb_class_driver.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'firmware/usbstack') diff --git a/firmware/usbstack/usb_class_driver.h b/firmware/usbstack/usb_class_driver.h index b037e1d..22b1c68 100644 --- a/firmware/usbstack/usb_class_driver.h +++ b/firmware/usbstack/usb_class_driver.h @@ -25,14 +25,14 @@ /* Common api, implemented by all class drivers */ struct usb_class_driver { - /* First some runtime data */ + /* First some runtime data */ bool enabled; int first_interface; int last_interface; - /* Driver api starts here */ + /* Driver api starts here */ - /* Set this to true if the driver needs exclusive disk access (e.g. usb storage) */ + /* Set this to true if the driver needs exclusive disk access (e.g. usb storage) */ bool needs_exclusive_storage; /* Let the driver request endpoints it need. Returns zero on success */ @@ -52,7 +52,7 @@ struct usb_class_driver { int (*get_config_descriptor)(unsigned char *dest, int max_packet_size); /* Tells the driver that a usb connection has been set up and is now - ready to use. + ready to use. Optional function */ void (*init_connection)(void); @@ -62,24 +62,24 @@ struct usb_class_driver { Optional function */ void (*init)(void); - /* Tells the driver that the usb connection is no longer active + /* Tells the driver that the usb connection is no longer active Optional function */ void (*disconnect)(void); /* Tells the driver that a usb transfer has been completed. Note that "dir" - is relative to the host + is relative to the host Optional function */ void (*transfer_complete)(int ep,int dir, int status, int length); /* Tells the driver that a control request has come in. If the driver is able to handle it, it should ack the request, and return true. Otherwise - it should return false. + it should return false. Optional function */ bool (*control_request)(struct usb_ctrlrequest* req); #ifdef HAVE_HOTSWAP /* Tells the driver that a hotswappable disk/card was inserted or - extracted + extracted Optional function */ void (*notify_hotswap)(int volume, bool inserted); #endif -- cgit v1.1