usb: gadgetfs whitespace cleanup

Remove some whitespace bugs in gadgetfs (mostly from someone's
patch updating the AIO support).

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
David Brownell 2007-01-15 11:30:28 -08:00 committed by Greg Kroah-Hartman
parent 6dde896e4e
commit 2505107def

View file

@ -20,7 +20,7 @@
*/ */
// #define DEBUG /* data to help fault diagnosis */ // #define DEBUG /* data to help fault diagnosis */
// #define VERBOSE /* extra debug messages (success too) */ // #define VERBOSE /* extra debug messages (success too) */
#include <linux/init.h> #include <linux/init.h>
@ -565,29 +565,29 @@ static ssize_t ep_aio_read_retry(struct kiocb *iocb)
ssize_t len, total; ssize_t len, total;
int i; int i;
/* we "retry" to get the right mm context for this: */ /* we "retry" to get the right mm context for this: */
/* copy stuff into user buffers */ /* copy stuff into user buffers */
total = priv->actual; total = priv->actual;
len = 0; len = 0;
for (i=0; i < priv->nr_segs; i++) { for (i=0; i < priv->nr_segs; i++) {
ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total); ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total);
if (copy_to_user(priv->iv[i].iov_base, priv->buf, this)) { if (copy_to_user(priv->iv[i].iov_base, priv->buf, this)) {
if (len == 0) if (len == 0)
len = -EFAULT; len = -EFAULT;
break; break;
} }
total -= this; total -= this;
len += this; len += this;
if (total == 0) if (total == 0)
break; break;
} }
kfree(priv->buf); kfree(priv->buf);
kfree(priv); kfree(priv);
aio_put_req(iocb); aio_put_req(iocb);
return len; return len;
} }
static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req) static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
@ -636,7 +636,7 @@ ep_aio_rwtail(
size_t len, size_t len,
struct ep_data *epdata, struct ep_data *epdata,
const struct iovec *iv, const struct iovec *iv,
unsigned long nr_segs unsigned long nr_segs
) )
{ {
struct kiocb_priv *priv; struct kiocb_priv *priv;
@ -1808,7 +1808,7 @@ static struct usb_gadget_driver gadgetfs_driver = {
.disconnect = gadgetfs_disconnect, .disconnect = gadgetfs_disconnect,
.suspend = gadgetfs_suspend, .suspend = gadgetfs_suspend,
.driver = { .driver = {
.name = (char *) shortname, .name = (char *) shortname,
}, },
}; };
@ -1829,7 +1829,7 @@ static struct usb_gadget_driver probe_driver = {
.unbind = gadgetfs_nop, .unbind = gadgetfs_nop,
.setup = (void *)gadgetfs_nop, .setup = (void *)gadgetfs_nop,
.disconnect = gadgetfs_nop, .disconnect = gadgetfs_nop,
.driver = { .driver = {
.name = "nop", .name = "nop",
}, },
}; };
@ -1849,7 +1849,7 @@ static struct usb_gadget_driver probe_driver = {
* . full/low speed config ... all wTotalLength bytes (with interface, * . full/low speed config ... all wTotalLength bytes (with interface,
* class, altsetting, endpoint, and other descriptors) * class, altsetting, endpoint, and other descriptors)
* . high speed config ... all descriptors, for high speed operation; * . high speed config ... all descriptors, for high speed operation;
* this one's optional except for high-speed hardware * this one's optional except for high-speed hardware
* . device descriptor * . device descriptor
* *
* Endpoints are not yet enabled. Drivers may want to immediately * Endpoints are not yet enabled. Drivers may want to immediately