From: Joe Perches Date: Thu, 25 Mar 2010 05:16:55 +0000 (-0700) Subject: Staging: cx25821: Hoist assign from if X-Git-Tag: android-x86-2.2~974^2^2~446 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7c2c2eb7b2ea83e759d75bf362b161c264b98081;p=android-x86%2Fkernel.git Staging: cx25821: Hoist assign from if Signed-off-by: Joe Perches Signed-off-by: Greg Kroah-Hartman --- 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 */