aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/ozwpan/ozusbsvc.c
diff options
context:
space:
mode:
authorRupesh Gujare <rupesh.gujare@atmel.com>2013-08-23 16:11:02 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-23 10:12:32 -0700
commit4e7fb829771de2cf8a5ba9576290d76936d3e814 (patch)
tree969f901ceaf10167bc9c8273dd6403a89f00a14a /drivers/staging/ozwpan/ozusbsvc.c
parentdfc065f19fe0ce4ef7a52011801c5c19131e6529 (diff)
staging: ozwpan: Fix Documentation style.
This patch fixes Kernel Documentation style. Signed-off-by: Rupesh Gujare <rupesh.gujare@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ozwpan/ozusbsvc.c')
-rw-r--r--drivers/staging/ozwpan/ozusbsvc.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/staging/ozwpan/ozusbsvc.c b/drivers/staging/ozwpan/ozusbsvc.c
index 404941d55d7..cf263791cb3 100644
--- a/drivers/staging/ozwpan/ozusbsvc.c
+++ b/drivers/staging/ozwpan/ozusbsvc.c
@@ -28,7 +28,7 @@
#include "ozhcd.h"
#include "ozusbsvc.h"
-/*------------------------------------------------------------------------------
+/*
* This is called once when the driver is loaded to initialise the USB service.
* Context: process
*/
@@ -37,7 +37,7 @@ int oz_usb_init(void)
return oz_hcd_init();
}
-/*------------------------------------------------------------------------------
+/*
* This is called once when the driver is unloaded to terminate the USB service.
* Context: process
*/
@@ -46,7 +46,7 @@ void oz_usb_term(void)
oz_hcd_term();
}
-/*------------------------------------------------------------------------------
+/*
* This is called when the USB service is started or resumed for a PD.
* Context: softirq
*/
@@ -111,7 +111,7 @@ int oz_usb_start(struct oz_pd *pd, int resume)
return rc;
}
-/*------------------------------------------------------------------------------
+/*
* This is called when the USB service is stopped or paused for a PD.
* Context: softirq or process
*/
@@ -152,7 +152,7 @@ void oz_usb_stop(struct oz_pd *pd, int pause)
}
}
-/*------------------------------------------------------------------------------
+/*
* This increments the reference count of the context area for a specific PD.
* This ensures this context area does not disappear while still in use.
* Context: softirq
@@ -164,7 +164,7 @@ void oz_usb_get(void *hpd)
atomic_inc(&usb_ctx->ref_count);
}
-/*------------------------------------------------------------------------------
+/*
* This decrements the reference count of the context area for a specific PD
* and destroys the context area if the reference count becomes zero.
* Context: irq or process
@@ -180,7 +180,7 @@ void oz_usb_put(void *hpd)
}
}
-/*------------------------------------------------------------------------------
+/*
* Context: softirq
*/
int oz_usb_heartbeat(struct oz_pd *pd)
@@ -205,7 +205,7 @@ done:
return rc;
}
-/*------------------------------------------------------------------------------
+/*
* Context: softirq
*/
int oz_usb_stream_create(void *hpd, u8 ep_num)
@@ -227,7 +227,7 @@ int oz_usb_stream_create(void *hpd, u8 ep_num)
return 0;
}
-/*------------------------------------------------------------------------------
+/*
* Context: softirq
*/
int oz_usb_stream_delete(void *hpd, u8 ep_num)
@@ -250,7 +250,7 @@ int oz_usb_stream_delete(void *hpd, u8 ep_num)
return 0;
}
-/*------------------------------------------------------------------------------
+/*
* Context: softirq or process
*/
void oz_usb_request_heartbeat(void *hpd)