mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 07:31:29 +00:00
staging: ozwpan: fix missing blank line after declaration
Cleanup checkpatch.pl warnings. Signed-off-by: Adrian Nicoara <anicoara@uwaterloo.ca> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b511443232
commit
ce6880e175
@ -263,6 +263,7 @@ static long oz_cdev_ioctl(struct file *filp, unsigned int cmd,
|
||||
switch (cmd) {
|
||||
case OZ_IOCTL_GET_PD_LIST: {
|
||||
struct oz_pd_list list;
|
||||
|
||||
oz_dbg(ON, "OZ_IOCTL_GET_PD_LIST\n");
|
||||
memset(&list, 0, sizeof(list));
|
||||
list.count = oz_get_pd_list(list.addr, OZ_MAX_PDS);
|
||||
@ -273,6 +274,7 @@ static long oz_cdev_ioctl(struct file *filp, unsigned int cmd,
|
||||
break;
|
||||
case OZ_IOCTL_SET_ACTIVE_PD: {
|
||||
u8 addr[ETH_ALEN];
|
||||
|
||||
oz_dbg(ON, "OZ_IOCTL_SET_ACTIVE_PD\n");
|
||||
if (copy_from_user(addr, (void __user *)arg, ETH_ALEN))
|
||||
return -EFAULT;
|
||||
@ -281,6 +283,7 @@ static long oz_cdev_ioctl(struct file *filp, unsigned int cmd,
|
||||
break;
|
||||
case OZ_IOCTL_GET_ACTIVE_PD: {
|
||||
u8 addr[ETH_ALEN];
|
||||
|
||||
oz_dbg(ON, "OZ_IOCTL_GET_ACTIVE_PD\n");
|
||||
spin_lock_bh(&g_cdev.lock);
|
||||
ether_addr_copy(addr, g_cdev.active_addr);
|
||||
@ -292,6 +295,7 @@ static long oz_cdev_ioctl(struct file *filp, unsigned int cmd,
|
||||
case OZ_IOCTL_ADD_BINDING:
|
||||
case OZ_IOCTL_REMOVE_BINDING: {
|
||||
struct oz_binding_info b;
|
||||
|
||||
if (copy_from_user(&b, (void __user *)arg,
|
||||
sizeof(struct oz_binding_info))) {
|
||||
return -EFAULT;
|
||||
@ -320,6 +324,7 @@ static unsigned int oz_cdev_poll(struct file *filp, poll_table *wait)
|
||||
spin_lock_bh(&dev->lock);
|
||||
if (dev->active_pd) {
|
||||
struct oz_serial_ctx *ctx = oz_cdev_claim_ctx(dev->active_pd);
|
||||
|
||||
if (ctx) {
|
||||
if (ctx->rd_in != ctx->rd_out)
|
||||
ret |= POLLIN | POLLRDNORM;
|
||||
|
@ -174,6 +174,7 @@ int oz_queue_elt_info(struct oz_elt_buf *buf, u8 isoc, u8 id,
|
||||
== OZ_USB_ENDPOINT_DATA) &&
|
||||
(body->format == OZ_DATA_F_ISOC_FIXED)) {
|
||||
u8 unit_count = body->frame_number;
|
||||
|
||||
body->frame_number = st->frame_number;
|
||||
st->frame_number += unit_count;
|
||||
}
|
||||
|
@ -106,6 +106,7 @@ struct oz_pd *oz_pd_alloc(const u8 *mac_addr)
|
||||
|
||||
if (pd) {
|
||||
int i;
|
||||
|
||||
atomic_set(&pd->ref_count, 2);
|
||||
for (i = 0; i < OZ_NB_APPS; i++)
|
||||
spin_lock_init(&pd->app_lock[i]);
|
||||
@ -153,6 +154,7 @@ static void oz_pd_free(struct work_struct *work)
|
||||
|
||||
list_for_each_safe(e, n, &pd->tx_queue) {
|
||||
struct oz_tx_frame *f = list_entry(e, struct oz_tx_frame, link);
|
||||
|
||||
if (f->skb != NULL)
|
||||
kfree_skb(f->skb);
|
||||
oz_retire_frame(pd, f);
|
||||
@ -249,6 +251,7 @@ void oz_pd_heartbeat(struct oz_pd *pd, u16 apps)
|
||||
hrtimer_cancel(&pd->heartbeat);
|
||||
if (pd->mode & OZ_F_ISOC_ANYTIME) {
|
||||
int count = 8;
|
||||
|
||||
while (count-- && (oz_send_isoc_frame(pd) >= 0))
|
||||
;
|
||||
}
|
||||
@ -752,6 +755,7 @@ int oz_send_isoc_unit(struct oz_pd *pd, u8 ep_num, const u8 *data, int len)
|
||||
} else {
|
||||
struct oz_hdr oz;
|
||||
struct oz_isoc_large iso;
|
||||
|
||||
spin_lock_bh(&pd->stream_lock);
|
||||
iso.frame_number = st->frame_num;
|
||||
st->frame_num += nb_units;
|
||||
@ -774,8 +778,10 @@ int oz_send_isoc_unit(struct oz_pd *pd, u8 ep_num, const u8 *data, int len)
|
||||
if (!(pd->mode & OZ_F_ISOC_ANYTIME)) {
|
||||
struct oz_tx_frame *isoc_unit = NULL;
|
||||
int nb = pd->nb_queued_isoc_frames;
|
||||
|
||||
if (nb >= pd->isoc_latency) {
|
||||
struct oz_tx_frame *f;
|
||||
|
||||
oz_dbg(TX_FRAMES, "Dropping ISOC Unit nb= %d\n",
|
||||
nb);
|
||||
spin_lock(&pd->tx_frame_lock);
|
||||
|
@ -179,6 +179,7 @@ static struct oz_pd *oz_connect_req(struct oz_pd *cur_pd, struct oz_elt *elt,
|
||||
} else {
|
||||
struct oz_pd *pd2 = NULL;
|
||||
struct list_head *e;
|
||||
|
||||
pd = oz_pd_alloc(pd_addr);
|
||||
if (pd == NULL)
|
||||
return NULL;
|
||||
@ -262,6 +263,7 @@ done:
|
||||
u16 start_apps = new_apps & ~pd->total_apps & ~0x1;
|
||||
u16 stop_apps = pd->total_apps & ~new_apps & ~0x1;
|
||||
u16 resume_apps = new_apps & pd->paused_apps & ~0x1;
|
||||
|
||||
spin_unlock_bh(&g_polling_lock);
|
||||
oz_pd_set_state(pd, OZ_PD_S_CONNECTED);
|
||||
oz_dbg(ON, "new_apps=0x%x total_apps=0x%x paused_apps=0x%x\n",
|
||||
@ -383,6 +385,7 @@ static void oz_rx_frame(struct sk_buff *skb)
|
||||
if ((oz_hdr->control & OZ_F_ACK_REQUESTED) &&
|
||||
(pd->state == OZ_PD_S_CONNECTED)) {
|
||||
int backlog = pd->nb_queued_frames;
|
||||
|
||||
pd->trigger_pkt_num = pkt_num;
|
||||
/* Send queued frames */
|
||||
oz_send_queued_frames(pd, backlog);
|
||||
@ -781,6 +784,7 @@ int oz_protocol_init(char *devs)
|
||||
oz_binding_add(NULL);
|
||||
} else {
|
||||
char d[32];
|
||||
|
||||
while (*devs) {
|
||||
devs = oz_get_next_device_name(devs, d, sizeof(d));
|
||||
if (d[0])
|
||||
|
@ -128,6 +128,7 @@ void oz_usb_stop(struct oz_pd *pd, int pause)
|
||||
spin_unlock_bh(&pd->app_lock[OZ_APPID_USB]);
|
||||
if (usb_ctx) {
|
||||
struct timespec ts, now;
|
||||
|
||||
getnstimeofday(&ts);
|
||||
oz_dbg(ON, "USB service stopping...\n");
|
||||
usb_ctx->stopped = 1;
|
||||
@ -235,6 +236,7 @@ int oz_usb_stream_delete(void *hpd, u8 ep_num)
|
||||
|
||||
if (usb_ctx) {
|
||||
struct oz_pd *pd = usb_ctx->pd;
|
||||
|
||||
if (pd) {
|
||||
oz_dbg(ON, "%s: (0x%x)\n", __func__, ep_num);
|
||||
if (pd->mode & OZ_F_ISOC_NO_ELTS) {
|
||||
|
@ -213,6 +213,7 @@ int oz_usb_control_req(void *hpd, u8 req_id, struct usb_ctrlrequest *setup,
|
||||
case USB_REQ_SET_INTERFACE: {
|
||||
u8 if_num = (u8)windex;
|
||||
u8 alt = (u8)wvalue;
|
||||
|
||||
rc = oz_usb_set_interface_req(hpd, req_id,
|
||||
if_num, alt);
|
||||
}
|
||||
@ -254,6 +255,7 @@ int oz_usb_send_isoc(void *hpd, u8 ep_num, struct urb *urb)
|
||||
if (pd->mode & OZ_F_ISOC_NO_ELTS) {
|
||||
for (i = 0; i < urb->number_of_packets; i++) {
|
||||
u8 *data;
|
||||
|
||||
desc = &urb->iso_frame_desc[i];
|
||||
data = ((u8 *)urb->transfer_buffer)+desc->offset;
|
||||
oz_send_isoc_unit(pd, ep_num, data, desc->length);
|
||||
@ -271,6 +273,7 @@ int oz_usb_send_isoc(void *hpd, u8 ep_num, struct urb *urb)
|
||||
int unit_count;
|
||||
int unit_size;
|
||||
int rem;
|
||||
|
||||
if (ei == NULL)
|
||||
return -1;
|
||||
rem = MAX_ISOC_FIXED_DATA;
|
||||
@ -340,6 +343,7 @@ static void oz_usb_handle_ep_data(struct oz_usb_ctx *usb_ctx,
|
||||
u8 *data = body->data;
|
||||
int count;
|
||||
int i;
|
||||
|
||||
if (!unit_size)
|
||||
break;
|
||||
count = data_len/unit_size;
|
||||
|
Loading…
Reference in New Issue
Block a user