aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/cx25821
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-03-24 22:16:55 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 11:35:43 -0700
commit7c2c2eb7b2ea83e759d75bf362b161c264b98081 (patch)
tree5604e63609c7eaf9f6a8245374d2928837c4ef08 /drivers/staging/cx25821
parentStaging: vt6655: CGI/CSI confusion in device_ioctl() (diff)
downloadlinux-dev-7c2c2eb7b2ea83e759d75bf362b161c264b98081.tar.xz
linux-dev-7c2c2eb7b2ea83e759d75bf362b161c264b98081.zip
Staging: cx25821: Hoist assign from if
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/cx25821')
-rw-r--r--drivers/staging/cx25821/cx25821-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/cx25821/cx25821-core.c b/drivers/staging/cx25821/cx25821-core.c
index 9e9b8c3c9311..eee4dc7b1941 100644
--- a/drivers/staging/cx25821/cx25821-core.c
+++ b/drivers/staging/cx25821/cx25821-core.c
@@ -1299,7 +1299,8 @@ int cx25821_risc_databuffer_audio(struct pci_dev *pci,
instructions = 1 + (bpl * lines) / PAGE_SIZE + lines;
instructions += 1;
- if ((rc = btcx_riscmem_alloc(pci, risc, instructions * 12)) < 0)
+ rc = btcx_riscmem_alloc(pci, risc, instructions * 12);
+ if (rc < 0)
return rc;
/* write risc instructions */