staging: vt6656: struct vnt_private rename apRCB to rcb

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-07-18 06:36:15 +01:00 committed by Greg Kroah-Hartman
parent 3d582487be
commit 8577011c7a
2 changed files with 5 additions and 5 deletions

View file

@ -288,7 +288,7 @@ struct vnt_private {
u32 int_interval;
/* Variables to track resources for the BULK In Pipe */
struct vnt_rcb *apRCB[CB_MAX_RX_DESC];
struct vnt_rcb *rcb[CB_MAX_RX_DESC];
u32 cbRD;
/* Variables to track resources for the BULK Out Pipe */

View file

@ -418,7 +418,7 @@ static void device_free_rx_bufs(struct vnt_private *priv)
int ii;
for (ii = 0; ii < priv->cbRD; ii++) {
rcb = priv->apRCB[ii];
rcb = priv->rcb[ii];
if (!rcb)
continue;
@ -486,14 +486,14 @@ static bool device_alloc_bufs(struct vnt_private *priv)
}
for (ii = 0; ii < priv->cbRD; ii++) {
priv->apRCB[ii] = kzalloc(sizeof(struct vnt_rcb), GFP_KERNEL);
if (!priv->apRCB[ii]) {
priv->rcb[ii] = kzalloc(sizeof(struct vnt_rcb), GFP_KERNEL);
if (!priv->rcb[ii]) {
dev_err(&priv->usb->dev,
"failed to allocate rcb no %d\n", ii);
goto free_rx_tx;
}
rcb = priv->apRCB[ii];
rcb = priv->rcb[ii];
rcb->priv = priv;