summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ced1401
diff options
context:
space:
mode:
authorLuca Ellero <luca.ellero@brickedbrain.com>2014-07-10 11:02:20 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-10 15:09:26 -0700
commit0c402b9f2fc40b2d9ce804292961d1e43b616413 (patch)
tree1b47414aa69c5999f8e7b9e44c573c312a47e822 /drivers/staging/ced1401
parent347ee20b4081e658ff888872e3189ac0ba9d2edd (diff)
downloadop-kernel-dev-0c402b9f2fc40b2d9ce804292961d1e43b616413.zip
op-kernel-dev-0c402b9f2fc40b2d9ce804292961d1e43b616413.tar.gz
staging: ced1401: fix ced_clear_area()
Rename camel case arguments and locals in function ced_clear_area() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ced1401')
-rw-r--r--drivers/staging/ced1401/ced_ioc.c90
-rw-r--r--drivers/staging/ced1401/usb1401.h2
2 files changed, 51 insertions, 41 deletions
diff --git a/drivers/staging/ced1401/ced_ioc.c b/drivers/staging/ced1401/ced_ioc.c
index 3f8bf6d..9c629e2 100644
--- a/drivers/staging/ced1401/ced_ioc.c
+++ b/drivers/staging/ced1401/ced_ioc.c
@@ -607,75 +607,85 @@ int ced_get_out_buf_space(struct ced_data *ced)
** Clears up a transfer area. This is always called in the context of a user
** request, never from a call-back.
****************************************************************************/
-int ced_clear_area(struct ced_data *ced, int nArea)
+int ced_clear_area(struct ced_data *ced, int area)
{
- int iReturn = U14ERR_NOERROR;
+ int ret = U14ERR_NOERROR;
- if ((nArea < 0) || (nArea >= MAX_TRANSAREAS)) {
- iReturn = U14ERR_BADAREA;
+ if ((area < 0) || (area >= MAX_TRANSAREAS)) {
+ ret = U14ERR_BADAREA;
dev_err(&ced->interface->dev, "%s: Attempt to clear area %d\n",
- __func__, nArea);
+ __func__, area);
} else {
/* to save typing */
- struct transarea *pTA = &ced->trans_def[nArea];
- if (!pTA->used) /* if not used... */
- iReturn = U14ERR_NOTSET; /* ...nothing to be done */
+ struct transarea *ta = &ced->trans_def[area];
+ if (!ta->used) /* if not used... */
+ ret = U14ERR_NOTSET; /* ...nothing to be done */
else {
- /* We must save the memory we return as we shouldn't mess with memory while */
- /* holding a spin lock. */
- struct page **pPages = NULL; /*save page address list*/
- int nPages = 0; /* and number of pages */
+ /* We must save the memory we return as we shouldn't */
+ /* mess with memory while holding a spin lock. */
+ struct page **pages = NULL; /*save page address list*/
+ int n_pages = 0; /* and number of pages */
int np;
dev_dbg(&ced->interface->dev, "%s: area %d\n",
- __func__, nArea);
+ __func__, area);
spin_lock_irq(&ced->staged_lock);
- if ((ced->staged_id == nArea)
+ if ((ced->staged_id == area)
&& (ced->dma_flag > MODE_CHAR)) {
- iReturn = U14ERR_UNLOCKFAIL; /* cannot delete as in use */
+ /* cannot delete as in use */
+ ret = U14ERR_UNLOCKFAIL;
dev_err(&ced->interface->dev,
"%s: call on area %d while active\n",
- __func__, nArea);
+ __func__, area);
} else {
- pPages = pTA->pages; /* save page address list */
- nPages = pTA->n_pages; /* and page count */
- if (pTA->event_sz) /* if events flagging in use */
- wake_up_interruptible(&pTA->event); /* release anything that was waiting */
+ pages = ta->pages; /* save page address list */
+ n_pages = ta->n_pages; /* and page count */
+ if (ta->event_sz)/* if events flagging in use */
+ /* release anything that was waiting */
+ wake_up_interruptible(&ta->event);
if (ced->xfer_waiting
- && (ced->dma_info.ident == nArea))
- ced->xfer_waiting = false; /* Cannot have pending xfer if area cleared */
-
- /* Clean out the struct transarea except for the wait queue, which is at the end */
- /* This sets used to false and event_sz to 0 to say area not used and no events. */
- memset(pTA, 0,
+ && (ced->dma_info.ident == area))
+ /* Cannot have pending xfer if */
+ /* area cleared */
+ ced->xfer_waiting = false;
+
+ /* Clean out the struct transarea except for */
+ /* the wait queue, which is at the end. This */
+ /* sets used to false and event_sz to 0 to */
+ /* say area not used and no events. */
+ memset(ta, 0,
sizeof(struct transarea) -
sizeof(wait_queue_head_t));
}
spin_unlock_irq(&ced->staged_lock);
- if (pPages) { /* if we decided to release the memory */
- /* Now we must undo the pinning down of the pages. We will assume the worst and mark */
- /* all the pages as dirty. Don't be tempted to move this up above as you must not be */
- /* holding a spin lock to do this stuff as it is not atomic. */
- dev_dbg(&ced->interface->dev, "%s: nPages=%d\n",
- __func__, nPages);
-
- for (np = 0; np < nPages; ++np) {
- if (pPages[np]) {
- SetPageDirty(pPages[np]);
- page_cache_release(pPages[np]);
+ if (pages) { /* if we decided to release the memory */
+ /* Now we must undo the pinning down of the */
+ /* pages. We will assume the worst and mark */
+ /* all the pages as dirty. Don't be tempted */
+ /* to move this up above as you must not be */
+ /* holding a spin lock to do this stuff as */
+ /* it is not atomic. */
+ dev_dbg(&ced->interface->dev,
+ "%s: n_pages=%d\n",
+ __func__, n_pages);
+
+ for (np = 0; np < n_pages; ++np) {
+ if (pages[np]) {
+ SetPageDirty(pages[np]);
+ page_cache_release(pages[np]);
}
}
- kfree(pPages);
+ kfree(pages);
dev_dbg(&ced->interface->dev,
- "%s: kfree(pPages) done\n", __func__);
+ "%s: kfree(pages) done\n", __func__);
}
}
}
- return iReturn;
+ return ret;
}
/****************************************************************************
diff --git a/drivers/staging/ced1401/usb1401.h b/drivers/staging/ced1401/usb1401.h
index fc650c5..a5fc387 100644
--- a/drivers/staging/ced1401/usb1401.h
+++ b/drivers/staging/ced1401/usb1401.h
@@ -221,7 +221,7 @@ extern int ced_read_write_mem(struct ced_data *ced, bool read,
unsigned int len);
/* in ced_ioc.c */
-extern int ced_clear_area(struct ced_data *ced, int nArea);
+extern int ced_clear_area(struct ced_data *ced, int area);
extern int ced_send_string(struct ced_data *ced, const char __user *data, unsigned int n);
extern int ced_send_char(struct ced_data *ced, char c);
extern int ced_get_state(struct ced_data *ced, __u32 *state, __u32 *error);
OpenPOWER on IntegriCloud