summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2009-04-18 18:17:29 +0000
committerFrank Gevaerts <frank@gevaerts.be>2009-04-18 18:17:29 +0000
commit463e20271b77b7cefac4231ddf192546148888bc (patch)
tree9b45d34eeb69deb4743a9d310e624c45c35787a0
parenta54e0b6dba1b79b6a449395ffdbfc7220bbbe80c (diff)
downloadrockbox-463e20271b77b7cefac4231ddf192546148888bc.tar.gz
rockbox-463e20271b77b7cefac4231ddf192546148888bc.zip
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
-rw-r--r--firmware/export/usb.h4
-rw-r--r--firmware/usbstack/usb_class_driver.h16
2 files changed, 10 insertions, 10 deletions
diff --git a/firmware/export/usb.h b/firmware/export/usb.h
index be36ee0b31..fed33ca4d0 100644
--- a/firmware/export/usb.h
+++ b/firmware/export/usb.h
@@ -107,7 +107,6 @@ struct usb_transfer_completion_event_data
};
#endif
-
void usb_init(void);
void usb_enable(bool on);
void usb_attach(void);
@@ -128,7 +127,8 @@ bool usb_charging_enabled(void);
#endif
#endif
#ifdef HAVE_USBSTACK
-void usb_signal_transfer_completion(struct usb_transfer_completion_event_data* event_data);
+void usb_signal_transfer_completion(
+ struct usb_transfer_completion_event_data *event_data);
bool usb_driver_enabled(int driver);
bool usb_exclusive_storage(void); /* storage is available for usb */
void usb_storage_try_release_storage(void);
diff --git a/firmware/usbstack/usb_class_driver.h b/firmware/usbstack/usb_class_driver.h
index b037e1dec2..22b1c6888c 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