Skip to content

Commit

Permalink
staging/easycap: replace if(false == var) with if (!var)
Browse files Browse the repository at this point in the history
    's/(false == \([^ ]\+\))/(!\1)/g'

Cc: Mike Thomas <rmthomas@sciolus.org>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Tomas Winkler authored and Greg Kroah-Hartman committed Mar 7, 2011
1 parent 27d683a commit febd32b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions drivers/staging/easycap/easycap_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ field2frame(struct easycap *peasycap)
pad = peasycap->frame_buffer[kad][0].pgo; rad = PAGE_SIZE;
odd = !!(peasycap->field_buffer[kex][0].kount);

if (odd && (false == decimatepixel)) {
if (odd && (!decimatepixel)) {
JOM(8, "initial skipping %4i bytes p.%4i\n",
w3/multiplier, mad);
pad += (w3 / multiplier); rad -= (w3 / multiplier);
Expand All @@ -1400,7 +1400,7 @@ field2frame(struct easycap *peasycap)
* READ w2 BYTES FROM FIELD BUFFER,
* WRITE w3 BYTES TO FRAME BUFFER
*/
if (false == decimatepixel) {
if (!decimatepixel) {
over = w2;
do {
much = over; more = 0;
Expand Down Expand Up @@ -1489,7 +1489,7 @@ field2frame(struct easycap *peasycap)
* UNLESS IT IS THE LAST LINE OF AN ODD FRAME
*/
/*---------------------------------------------------------------------------*/
if ((false == odd) || (cz != wz)) {
if (!odd || (cz != wz)) {
over = w3;
do {
if (!rad) {
Expand All @@ -1514,7 +1514,7 @@ field2frame(struct easycap *peasycap)
* WRITE w3 / 2 BYTES TO FRAME BUFFER
*/
/*---------------------------------------------------------------------------*/
} else if (false == odd) {
} else if (!odd) {
over = w2;
do {
much = over; more = 0; margin = 0; mask = 0x00;
Expand Down Expand Up @@ -1641,12 +1641,12 @@ field2frame(struct easycap *peasycap)
SAM("ERROR: discrepancy %i in bytes read\n", c2 - cz);
c3 = (mad + 1)*PAGE_SIZE - rad;

if (false == decimatepixel) {
if (!decimatepixel) {
if (bytesperpixel * cz != c3)
SAM("ERROR: discrepancy %i in bytes written\n",
c3 - (bytesperpixel * cz));
} else {
if (false == odd) {
if (!odd) {
if (bytesperpixel *
cz != (4 * c3))
SAM("ERROR: discrepancy %i in bytes written\n",
Expand Down Expand Up @@ -1830,9 +1830,9 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
/*---------------------------------------------------------------------------*/
switch (bytesperpixel) {
case 2: {
if (false == decimatepixel) {
if (!decimatepixel) {
memcpy(pad, pex, (size_t)much);
if (false == byteswaporder) {
if (!byteswaporder) {
/* UYVY */
return 0;
} else {
Expand All @@ -1847,7 +1847,7 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
return 0;
}
} else {
if (false == byteswaporder) {
if (!byteswaporder) {
/* UYVY DECIMATED */
p2 = (u8 *)pex; p3 = (u8 *)pad; pz = p2 + much;
while (pz > p2) {
Expand Down Expand Up @@ -1875,8 +1875,8 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
}
case 3:
{
if (false == decimatepixel) {
if (false == byteswaporder) {
if (!decimatepixel) {
if (!byteswaporder) {
/* RGB */
while (pz > p2) {
if (pr <= (p3 + bytesperpixel))
Expand Down Expand Up @@ -2015,7 +2015,7 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
}
return 0;
} else {
if (false == byteswaporder) {
if (!byteswaporder) {
/* RGB DECIMATED */
while (pz > p2) {
if (pr <= (p3 + bytesperpixel))
Expand Down Expand Up @@ -2164,8 +2164,8 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
}
case 4:
{
if (false == decimatepixel) {
if (false == byteswaporder) {
if (!decimatepixel) {
if (!byteswaporder) {
/* RGBA */
while (pz > p2) {
if (pr <= (p3 + bytesperpixel))
Expand Down Expand Up @@ -2324,7 +2324,7 @@ redaub(struct easycap *peasycap, void *pad, void *pex, int much, int more,
}
return 0;
} else {
if (false == byteswaporder) {
if (!byteswaporder) {
/*
* RGBA DECIMATED
*/
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/easycap/easycap_sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ easycap_alsa_complete(struct urb *purb)
peasycap->dma_next = fragment_bytes;
JOM(8, "wrapped dma buffer\n");
}
if (false == peasycap->microphone) {
if (!peasycap->microphone) {
if (much > more)
much = more;
memcpy(prt->dma_area +
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/easycap/easycap_sound_oss.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ easyoss_complete(struct urb *purb)

much = PAGE_SIZE - (int)(paudio_buffer->pto - paudio_buffer->pgo);

if (false == peasycap->microphone) {
if (!peasycap->microphone) {
if (much > more)
much = more;

Expand Down

0 comments on commit febd32b

Please sign in to comment.