Skip to content

Commit

Permalink
[media] cx25821-audio-upstream.c: Move operators
Browse files Browse the repository at this point in the history
Move operator of complex expression to the end of the lines to preserve
consistency.

Signed-off-by: Leonid V. Fedorenchik <leonidsbox@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Leonid V. Fedorenchik authored and Mauro Carvalho Chehab committed Nov 24, 2011
1 parent 81f4c8d commit 64dcb19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/media/video/cx25821/cx25821-audio-upstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,9 @@ int cx25821_openfile_audio(struct cx25821_dev *dev,
vfs_read_retval =
vfs_read(myfile, mybuf, line_size, &pos);

if (vfs_read_retval > 0
&& vfs_read_retval == line_size
&& dev->_audiodata_buf_virt_addr != NULL) {
if (vfs_read_retval > 0 &&
vfs_read_retval == line_size &&
dev->_audiodata_buf_virt_addr != NULL) {
memcpy((void *)(dev->
_audiodata_buf_virt_addr
+ offset / 4), mybuf,
Expand Down

0 comments on commit 64dcb19

Please sign in to comment.