Commit 376c0d3f authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: fix codingstyle issues in drivers/usb/core/devices.c

Fixes a number of coding style issues in the devices.c file.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 84cca820
...@@ -122,7 +122,7 @@ static const char *format_endpt = ...@@ -122,7 +122,7 @@ static const char *format_endpt =
*/ */
static DECLARE_WAIT_QUEUE_HEAD(deviceconndiscwq); static DECLARE_WAIT_QUEUE_HEAD(deviceconndiscwq);
static unsigned int conndiscevcnt = 0; static unsigned int conndiscevcnt;
/* this struct stores the poll state for <mountpoint>/devices pollers */ /* this struct stores the poll state for <mountpoint>/devices pollers */
struct usb_device_status { struct usb_device_status {
...@@ -172,12 +172,8 @@ static const char *class_decode(const int class) ...@@ -172,12 +172,8 @@ static const char *class_decode(const int class)
return clas_info[ix].class_name; return clas_info[ix].class_name;
} }
static char *usb_dump_endpoint_descriptor( static char *usb_dump_endpoint_descriptor(int speed, char *start, char *end,
int speed, const struct usb_endpoint_descriptor *desc)
char *start,
char *end,
const struct usb_endpoint_descriptor *desc
)
{ {
char dir, unit, *type; char dir, unit, *type;
unsigned interval, bandwidth = 1; unsigned interval, bandwidth = 1;
...@@ -235,7 +231,8 @@ static char *usb_dump_endpoint_descriptor( ...@@ -235,7 +231,8 @@ static char *usb_dump_endpoint_descriptor(
start += sprintf(start, format_endpt, desc->bEndpointAddress, dir, start += sprintf(start, format_endpt, desc->bEndpointAddress, dir,
desc->bmAttributes, type, desc->bmAttributes, type,
(le16_to_cpu(desc->wMaxPacketSize) & 0x07ff) * bandwidth, (le16_to_cpu(desc->wMaxPacketSize) & 0x07ff) *
bandwidth,
interval, unit); interval, unit);
return start; return start;
} }
...@@ -245,12 +242,13 @@ static char *usb_dump_interface_descriptor(char *start, char *end, ...@@ -245,12 +242,13 @@ static char *usb_dump_interface_descriptor(char *start, char *end,
const struct usb_interface *iface, const struct usb_interface *iface,
int setno) int setno)
{ {
const struct usb_interface_descriptor *desc = &intfc->altsetting[setno].desc; const struct usb_interface_descriptor *desc;
const char *driver_name = ""; const char *driver_name = "";
int active = 0; int active = 0;
if (start > end) if (start > end)
return start; return start;
desc = &intfc->altsetting[setno].desc;
if (iface) { if (iface) {
driver_name = (iface->dev.driver driver_name = (iface->dev.driver
? iface->dev.driver->name ? iface->dev.driver->name
...@@ -270,14 +268,10 @@ static char *usb_dump_interface_descriptor(char *start, char *end, ...@@ -270,14 +268,10 @@ static char *usb_dump_interface_descriptor(char *start, char *end,
return start; return start;
} }
static char *usb_dump_interface( static char *usb_dump_interface(int speed, char *start, char *end,
int speed,
char *start,
char *end,
const struct usb_interface_cache *intfc, const struct usb_interface_cache *intfc,
const struct usb_interface *iface, const struct usb_interface *iface, int setno)
int setno {
) {
const struct usb_host_interface *desc = &intfc->altsetting[setno]; const struct usb_host_interface *desc = &intfc->altsetting[setno];
int i; int i;
...@@ -311,13 +305,15 @@ static char *usb_dump_iad_descriptor(char *start, char *end, ...@@ -311,13 +305,15 @@ static char *usb_dump_iad_descriptor(char *start, char *end,
* 1. marking active interface altsettings (code lists all, but should mark * 1. marking active interface altsettings (code lists all, but should mark
* which ones are active, if any) * which ones are active, if any)
*/ */
static char *usb_dump_config_descriptor(char *start, char *end,
static char *usb_dump_config_descriptor(char *start, char *end, const struct usb_config_descriptor *desc, int active) const struct usb_config_descriptor *desc,
int active)
{ {
if (start > end) if (start > end)
return start; return start;
start += sprintf(start, format_config, start += sprintf(start, format_config,
active ? '*' : ' ', /* mark active/actual/current cfg. */ /* mark active/actual/current cfg. */
active ? '*' : ' ',
desc->bNumInterfaces, desc->bNumInterfaces,
desc->bConfigurationValue, desc->bConfigurationValue,
desc->bmAttributes, desc->bmAttributes,
...@@ -325,13 +321,8 @@ static char *usb_dump_config_descriptor(char *start, char *end, const struct usb ...@@ -325,13 +321,8 @@ static char *usb_dump_config_descriptor(char *start, char *end, const struct usb
return start; return start;
} }
static char *usb_dump_config ( static char *usb_dump_config(int speed, char *start, char *end,
int speed, const struct usb_host_config *config, int active)
char *start,
char *end,
const struct usb_host_config *config,
int active
)
{ {
int i, j; int i, j;
struct usb_interface_cache *intfc; struct usb_interface_cache *intfc;
...@@ -339,7 +330,8 @@ static char *usb_dump_config ( ...@@ -339,7 +330,8 @@ static char *usb_dump_config (
if (start > end) if (start > end)
return start; return start;
if (!config) /* getting these some in 2.3.7; none in 2.3.6 */ if (!config)
/* getting these some in 2.3.7; none in 2.3.6 */
return start + sprintf(start, "(null Cfg. desc.)\n"); return start + sprintf(start, "(null Cfg. desc.)\n");
start = usb_dump_config_descriptor(start, end, &config->desc, active); start = usb_dump_config_descriptor(start, end, &config->desc, active);
for (i = 0; i < USB_MAXIADS; i++) { for (i = 0; i < USB_MAXIADS; i++) {
...@@ -364,7 +356,8 @@ static char *usb_dump_config ( ...@@ -364,7 +356,8 @@ static char *usb_dump_config (
/* /*
* Dump the different USB descriptors. * Dump the different USB descriptors.
*/ */
static char *usb_dump_device_descriptor(char *start, char *end, const struct usb_device_descriptor *desc) static char *usb_dump_device_descriptor(char *start, char *end,
const struct usb_device_descriptor *desc)
{ {
u16 bcdUSB = le16_to_cpu(desc->bcdUSB); u16 bcdUSB = le16_to_cpu(desc->bcdUSB);
u16 bcdDevice = le16_to_cpu(desc->bcdDevice); u16 bcdDevice = le16_to_cpu(desc->bcdDevice);
...@@ -374,7 +367,7 @@ static char *usb_dump_device_descriptor(char *start, char *end, const struct usb ...@@ -374,7 +367,7 @@ static char *usb_dump_device_descriptor(char *start, char *end, const struct usb
start += sprintf(start, format_device1, start += sprintf(start, format_device1,
bcdUSB >> 8, bcdUSB & 0xff, bcdUSB >> 8, bcdUSB & 0xff,
desc->bDeviceClass, desc->bDeviceClass,
class_decode (desc->bDeviceClass), class_decode(desc->bDeviceClass),
desc->bDeviceSubClass, desc->bDeviceSubClass,
desc->bDeviceProtocol, desc->bDeviceProtocol,
desc->bMaxPacketSize0, desc->bMaxPacketSize0,
...@@ -391,12 +384,14 @@ static char *usb_dump_device_descriptor(char *start, char *end, const struct usb ...@@ -391,12 +384,14 @@ static char *usb_dump_device_descriptor(char *start, char *end, const struct usb
/* /*
* Dump the different strings that this device holds. * Dump the different strings that this device holds.
*/ */
static char *usb_dump_device_strings(char *start, char *end, struct usb_device *dev) static char *usb_dump_device_strings(char *start, char *end,
struct usb_device *dev)
{ {
if (start > end) if (start > end)
return start; return start;
if (dev->manufacturer) if (dev->manufacturer)
start += sprintf(start, format_string_manufacturer, dev->manufacturer); start += sprintf(start, format_string_manufacturer,
dev->manufacturer);
if (start > end) if (start > end)
goto out; goto out;
if (dev->product) if (dev->product)
...@@ -405,7 +400,8 @@ static char *usb_dump_device_strings(char *start, char *end, struct usb_device * ...@@ -405,7 +400,8 @@ static char *usb_dump_device_strings(char *start, char *end, struct usb_device *
goto out; goto out;
#ifdef ALLOW_SERIAL_NUMBER #ifdef ALLOW_SERIAL_NUMBER
if (dev->serial) if (dev->serial)
start += sprintf(start, format_string_serialnumber, dev->serial); start += sprintf(start, format_string_serialnumber,
dev->serial);
#endif #endif
out: out:
return start; return start;
...@@ -439,7 +435,8 @@ static char *usb_dump_desc(char *start, char *end, struct usb_device *dev) ...@@ -439,7 +435,8 @@ static char *usb_dump_desc(char *start, char *end, struct usb_device *dev)
#ifdef PROC_EXTRA /* TBD: may want to add this code later */ #ifdef PROC_EXTRA /* TBD: may want to add this code later */
static char *usb_dump_hub_descriptor(char *start, char *end, const struct usb_hub_descriptor * desc) static char *usb_dump_hub_descriptor(char *start, char *end,
const struct usb_hub_descriptor *desc)
{ {
int leng = USB_DT_HUB_NONVAR_SIZE; int leng = USB_DT_HUB_NONVAR_SIZE;
unsigned char *ptr = (unsigned char *)desc; unsigned char *ptr = (unsigned char *)desc;
...@@ -455,13 +452,16 @@ static char *usb_dump_hub_descriptor(char *start, char *end, const struct usb_hu ...@@ -455,13 +452,16 @@ static char *usb_dump_hub_descriptor(char *start, char *end, const struct usb_hu
return start; return start;
} }
static char *usb_dump_string(char *start, char *end, const struct usb_device *dev, char *id, int index) static char *usb_dump_string(char *start, char *end,
const struct usb_device *dev, char *id, int index)
{ {
if (start > end) if (start > end)
return start; return start;
start += sprintf(start, "Interface:"); start += sprintf(start, "Interface:");
if (index <= dev->maxstring && dev->stringindex && dev->stringindex[index]) if (index <= dev->maxstring && dev->stringindex &&
start += sprintf(start, "%s: %.100s ", id, dev->stringindex[index]); dev->stringindex[index])
start += sprintf(start, "%s: %.100s ", id,
dev->stringindex[index]);
return start; return start;
} }
...@@ -476,8 +476,10 @@ static char *usb_dump_string(char *start, char *end, const struct usb_device *de ...@@ -476,8 +476,10 @@ static char *usb_dump_string(char *start, char *end, const struct usb_device *de
* file_offset - the offset into the devices file on completion * file_offset - the offset into the devices file on completion
* The caller must own the device lock. * The caller must own the device lock.
*/ */
static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *skip_bytes, loff_t *file_offset, static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes,
struct usb_device *usbdev, struct usb_bus *bus, int level, int index, int count) loff_t *skip_bytes, loff_t *file_offset,
struct usb_device *usbdev, struct usb_bus *bus,
int level, int index, int count)
{ {
int chix; int chix;
int ret, cnt = 0; int ret, cnt = 0;
...@@ -492,8 +494,10 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski ...@@ -492,8 +494,10 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski
if (level > MAX_TOPO_LEVEL) if (level > MAX_TOPO_LEVEL)
return 0; return 0;
/* allocate 2^1 pages = 8K (on i386); should be more than enough for one device */ /* allocate 2^1 pages = 8K (on i386);
if (!(pages_start = (char*) __get_free_pages(GFP_KERNEL,1))) * should be more than enough for one device */
pages_start = (char *)__get_free_pages(GFP_KERNEL, 1);
if (!pages_start)
return -ENOMEM; return -ENOMEM;
if (usbdev->parent && usbdev->parent->devnum != -1) if (usbdev->parent && usbdev->parent->devnum != -1)
...@@ -545,7 +549,8 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski ...@@ -545,7 +549,8 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski
bus->bandwidth_isoc_reqs); bus->bandwidth_isoc_reqs);
} }
data_end = usb_dump_desc(data_end, pages_start + (2 * PAGE_SIZE) - 256, usbdev); data_end = usb_dump_desc(data_end, pages_start + (2 * PAGE_SIZE) - 256,
usbdev);
if (data_end > (pages_start + (2 * PAGE_SIZE) - 256)) if (data_end > (pages_start + (2 * PAGE_SIZE) - 256))
data_end += sprintf(data_end, "(truncated)\n"); data_end += sprintf(data_end, "(truncated)\n");
...@@ -576,8 +581,9 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski ...@@ -576,8 +581,9 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski
if (childdev) { if (childdev) {
usb_lock_device(childdev); usb_lock_device(childdev);
ret = usb_device_dump(buffer, nbytes, skip_bytes, file_offset, childdev, ret = usb_device_dump(buffer, nbytes, skip_bytes,
bus, level + 1, chix, ++cnt); file_offset, childdev, bus,
level + 1, chix, ++cnt);
usb_unlock_device(childdev); usb_unlock_device(childdev);
if (ret == -EFAULT) if (ret == -EFAULT)
return total_written; return total_written;
...@@ -587,7 +593,8 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski ...@@ -587,7 +593,8 @@ static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes, loff_t *ski
return total_written; return total_written;
} }
static ssize_t usb_device_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos) static ssize_t usb_device_read(struct file *file, char __user *buf,
size_t nbytes, loff_t *ppos)
{ {
struct usb_bus *bus; struct usb_bus *bus;
ssize_t ret, total_written = 0; ssize_t ret, total_written = 0;
...@@ -607,7 +614,8 @@ static ssize_t usb_device_read(struct file *file, char __user *buf, size_t nbyte ...@@ -607,7 +614,8 @@ static ssize_t usb_device_read(struct file *file, char __user *buf, size_t nbyte
if (!bus->root_hub) if (!bus->root_hub)
continue; continue;
usb_lock_device(bus->root_hub); usb_lock_device(bus->root_hub);
ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppos, bus->root_hub, bus, 0, 0, 0); ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppos,
bus->root_hub, bus, 0, 0, 0);
usb_unlock_device(bus->root_hub); usb_unlock_device(bus->root_hub);
if (ret < 0) { if (ret < 0) {
mutex_unlock(&usb_bus_list_lock); mutex_unlock(&usb_bus_list_lock);
...@@ -620,7 +628,8 @@ static ssize_t usb_device_read(struct file *file, char __user *buf, size_t nbyte ...@@ -620,7 +628,8 @@ static ssize_t usb_device_read(struct file *file, char __user *buf, size_t nbyte
} }
/* Kernel lock for "lastev" protection */ /* Kernel lock for "lastev" protection */
static unsigned int usb_device_poll(struct file *file, struct poll_table_struct *wait) static unsigned int usb_device_poll(struct file *file,
struct poll_table_struct *wait)
{ {
struct usb_device_status *st = file->private_data; struct usb_device_status *st = file->private_data;
unsigned int mask = 0; unsigned int mask = 0;
...@@ -629,7 +638,8 @@ static unsigned int usb_device_poll(struct file *file, struct poll_table_struct ...@@ -629,7 +638,8 @@ static unsigned int usb_device_poll(struct file *file, struct poll_table_struct
if (!st) { if (!st) {
st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL); st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL);
/* we may have dropped BKL - need to check for having lost the race */ /* we may have dropped BKL -
* need to check for having lost the race */
if (file->private_data) { if (file->private_data) {
kfree(st); kfree(st);
st = file->private_data; st = file->private_data;
...@@ -673,7 +683,7 @@ static int usb_device_release(struct inode *inode, struct file *file) ...@@ -673,7 +683,7 @@ static int usb_device_release(struct inode *inode, struct file *file)
return 0; return 0;
} }
static loff_t usb_device_lseek(struct file * file, loff_t offset, int orig) static loff_t usb_device_lseek(struct file *file, loff_t offset, int orig)
{ {
loff_t ret; loff_t ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment